Ignore:
Timestamp:
Jul 20, 2011 3:16:25 AM (13 years ago)
Author:
bennylp
Message:

Fixed #1329: Added --with-sdl option in aconfigure script to specify alternate libSDL location

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/aconfigure.ac

    r3670 r3672  
    760760             ) 
    761761 
     762dnl # SDL alt prefix 
     763AC_ARG_WITH(sdl, 
     764    AC_HELP_STRING([--with-sdl=DIR], 
     765                   [Specify alternate libSDL prefix]), 
     766    [], 
     767    [with_sdl=no] 
     768    ) 
     769 
    762770dnl # SDL 
    763771AC_ARG_ENABLE(sdl, 
     
    770778              ], 
    771779              [ 
     780                  SDL_CONFIG="sdl-config" 
     781                  if test "x$with_sdl" != "xno" -a "x$with_sdl" != "x"; then 
     782                        SDL_CONFIG=$with_sdl/bin/sdl-config 
     783                        AC_MSG_RESULT([Using SDL prefix... $with_sdl]) 
     784                  fi 
     785               
    772786                  AC_MSG_CHECKING([SDL availability..]) 
    773                   if sdl-config --version; then 
    774                                   AC_SUBST(ac_sdl_cflags) 
     787                  if $SDL_CONFIG --version; then 
     788                          AC_SUBST(ac_sdl_cflags) 
    775789                          AC_SUBST(ac_sdl_ldflags) 
    776                           ac_sdl_cflags=`sdl-config --cflags` 
     790                          ac_sdl_cflags=`$SDL_CONFIG --cflags` 
    777791                          ac_sdl_cflags="-DPJMEDIA_VIDEO_DEV_HAS_SDL=1 $ac_sdl_cflags" 
    778                           ac_sdl_ldflags=`sdl-config --libs` 
     792                          ac_sdl_ldflags=`$SDL_CONFIG --libs` 
    779793                          LIBS="$LIBS $ac_sdl_ldflags" 
    780794                   fi 
Note: See TracChangeset for help on using the changeset viewer.