Changeset 1691
- Timestamp:
- Aug 3, 2012, 1:33:16 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build/lol-build
r1684 r1691 167 167 ;; 168 168 raspi-arm) 169 ./configure --host=arm-bcm2708hardfp-linux-gnueabi CPPFLAGS="-I$RASPI_SDK_ROOT/firmware/opt/vc/include -I$RASPI_SDK_ROOT/firmware/opt/vc/include/interface/vcos/pthreads " LDFLAGS="-L$RASPI_SDK_ROOT/firmware/opt/vc/lib"169 ./configure --host=arm-bcm2708hardfp-linux-gnueabi CPPFLAGS="-I$RASPI_SDK_ROOT/firmware/opt/vc/include -I$RASPI_SDK_ROOT/firmware/opt/vc/include/interface/vcos/pthreads -I$RASPI_SDK_ROOT/chroot/usr/include" LDFLAGS="-L$RASPI_SDK_ROOT/firmware/opt/vc/lib -L$RASPI_SDK_ROOT/chroot/lib/arm-linux-gnueabihf -Wl,-rpath-link -Wl,$RASPI_SDK_ROOT/chroot/lib/arm-linux-gnueabihf -L$RASPI_SDK_ROOT/chroot/usr/lib/arm-linux-gnueabihf -Wl,-rpath-link -Wl,$RASPI_SDK_ROOT/chroot/usr/lib/arm-linux-gnueabihf -Wl,--unresolved-symbols=ignore-in-shared-libs" 170 170 ;; 171 171 nacl-i386) -
trunk/configure.ac
r1684 r1691 295 295 LIBS="${LIBS} ${SDL_LIBS} ${SDLMIXER_LIBS} ${SDLIMAGE_LIBS}" 296 296 AC_CHECK_HEADERS(SDL.h SDL/SDL.h, [ac_cv_my_have_sdl="yes"]) 297 AC_CHECK_HEADERS(SDL_mixer.h , [ac_cv_my_have_sdl_mixer="yes"])298 AC_CHECK_HEADERS(SDL_image.h , [ac_cv_my_have_sdl_image="yes"])297 AC_CHECK_HEADERS(SDL_mixer.h SDL/SDL_mixer.h, [ac_cv_my_have_sdl_mixer="yes"]) 298 AC_CHECK_HEADERS(SDL_image.h SDL/SDL_image.h, [ac_cv_my_have_sdl_image="yes"]) 299 299 AC_CHECK_LIB(SDL, main, 300 300 [SDL_LIBS="${SDL_LIBS} -lSDL"], -
trunk/src/audio.cpp
r1513 r1691 14 14 15 15 #if defined USE_SDL_MIXER 16 # include <SDL.h> 17 # include <SDL_mixer.h> 16 # if defined HAVE_SDL_SDL_H 17 # include <SDL/SDL.h> 18 # else 19 # include <SDL.h> 20 # endif 21 # if defined HAVE_SDL_SDL_MIXER_H 22 # include <SDL/SDL_mixer.h> 23 # else 24 # include <SDL_mixer.h> 25 # endif 18 26 #endif 19 27 -
trunk/src/image/codec/sdl-image.cpp
r1513 r1691 15 15 #if defined USE_SDL_IMAGE 16 16 17 #include <SDL.h> 18 #include <SDL_image.h> 17 #if defined HAVE_SDL_SDL_H 18 # include <SDL/SDL.h> 19 #else 20 # include <SDL.h> 21 #endif 22 #if defined HAVE_SDL_SDL_IMAGE_H 23 # include <SDL/SDL_image.h> 24 #else 25 # include <SDL_image.h> 26 #endif 19 27 20 28 #include "core.h" -
trunk/src/input/input.cpp
r1513 r1691 15 15 #include <cstdlib> 16 16 17 #if defined USE_SDL 17 #if defined HAVE_SDL_SDL_H 18 # include <SDL/SDL.h> 19 #else 18 20 # include <SDL.h> 19 21 #endif -
trunk/src/platform/sdl/sdlapp.cpp
r1361 r1691 14 14 15 15 #if defined USE_SDL 16 # include <SDL.h> 16 # if defined HAVE_SDL_SDL_H 17 # include <SDL/SDL.h> 18 # else 19 # include <SDL.h> 20 # endif 17 21 # if defined USE_D3D9 18 22 # include <d3d9.h> -
trunk/src/platform/sdl/sdlinput.cpp
r1399 r1691 13 13 #endif 14 14 15 #if defined USE_SDL 15 #if defined HAVE_SDL_SDL_H 16 # include <SDL/SDL.h> 17 #else 16 18 # include <SDL.h> 17 19 #endif -
trunk/src/sample.cpp
r1513 r1691 18 18 19 19 #if defined USE_SDL_MIXER 20 # include <SDL.h> 21 # include <SDL_mixer.h> 20 # if defined HAVE_SDL_SDL_H 21 # include <SDL/SDL.h> 22 # else 23 # include <SDL.h> 24 # endif 25 # if defined HAVE_SDL_SDL_MIXER_H 26 # include <SDL/SDL_mixer.h> 27 # else 28 # include <SDL_mixer.h> 29 # endif 22 30 #endif 23 31 -
trunk/src/timer.cpp
r1309 r1691 31 31 # include <sys/timer.h> 32 32 # include <sys/time_util.h> 33 #elif defined HAVE_SDL_SDL_H 34 # include <SDL/SDL.h> 33 35 #else 34 36 # include <SDL.h>
Note: See TracChangeset
for help on using the changeset viewer.