- Timestamp:
- Jan 29, 2007, 9:32:37 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/acinclude.m4
r9883 r10475 6 6 _lib_check="" 7 7 8 AC_CHECK_HEADER ([$1], [_header_check="yes"], [_header_check="no"])8 AC_CHECK_HEADERS([$1], [_header_check="yes"], [_header_check="no"]) 9 9 AC_CHECK_LIB([$2], [$3], [_lib_check="yes"], [_lib_check="no"]) 10 10 if [test "x$_header_check" = "xyes" && test "x$_lib_check" = "xyes"] ; then … … 28 28 _header_USED="" 29 29 30 ## AC_CHECK_HEADERS([$1], [_header_check="yes"],, [$7]) 30 31 for _header in $1 31 32 do 32 AC_CHECK_HEADER ([${_header}], [_header_check="yes" ; _header_USED=${_header}], [_header_check="no"], $7)33 AC_CHECK_HEADERS([${_header}], [_header_check="yes" ; _header_USED=${_header}], [_header_check="no"], $7) 33 34 if test "x${_header_check}" = "xyes" ; then 34 35 break -
trunk/config.h.in
r9110 r10475 9 9 /* if we have CURL */ 10 10 #undef HAVE_CURL 11 12 /* Define to 1 if you have the <curl/curl.h> header file. */ 13 #undef HAVE_CURL_CURL_H 11 14 12 15 /* Define to 1 if you have the <GL/glew.h> header file. */ -
trunk/configure.ac
r10376 r10475 294 294 SDL_VERSION=`sdl-config --version` 295 295 echo $SDL_VERSION 296 CPPFLAGS="${CPPFLAGS} `sdl-config --cflags`" 297 298 AX_CHECK_REQUIRED_HEADER_LIB([SDL.h SDL/SDL.h], [SDL], [main],,, [http://www.libsdl.org]) 296 297 298 AX_CHECK_REQUIRED_HEADER_LIB([SDL.h SDL/SDL.h], [SDL], [main],, [ 299 CPPFLAGS="${CPPFLAGS} `sdl-config --cflags`" 300 LDFLAGS="${LDFLAGS} `sdl-config --libs`"], [http://www.libsdl.org]) 301 299 302 300 303 ;; -
trunk/src/lib/graphics/importer/texture.cc
r9869 r10475 22 22 23 23 #ifdef HAVE_SDL_SDL_H 24 #include <SDL/SDL_image.h>25 #include <SDL/SDL_endian.h>26 #include <SDL/SDL_byteorder.h>24 #include <SDL/SDL_image.h> 25 #include <SDL/SDL_endian.h> 26 #include <SDL/SDL_byteorder.h> 27 27 #else 28 #include <SDL_endian.h>29 #include <SDL_image.h>30 #include <SDL_byteorder.h>28 #include <SDL_image.h> 29 #include <SDL_endian.h> 30 #include <SDL_byteorder.h> 31 31 #endif 32 32 #if SDL_BYTEORDER == SDL_BIG_ENDIAN
Note: See TracChangeset
for help on using the changeset viewer.