use sdl-config with $cross_prefix
patch by Frantisek Dvorak <valtri at users sourceforge net> Originally committed as revision 5234 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
65f51a41af
commit
6a1a892f23
11
configure
vendored
11
configure
vendored
@ -1217,9 +1217,10 @@ EOF
|
|||||||
|
|
||||||
sdl_too_old=no
|
sdl_too_old=no
|
||||||
sdl=no
|
sdl=no
|
||||||
if (sdl-config --version) >/dev/null 2>&1 ; then
|
SDL_CONFIG="${cross_prefix}sdl-config"
|
||||||
if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs` > /dev/null 2>&1 ; then
|
if ("${SDL_CONFIG}" --version) >/dev/null 2>&1 ; then
|
||||||
_sdlversion=`sdl-config --version | sed 's/[^0-9]//g'`
|
if $cc -o $TMPE `"${SDL_CONFIG}" --cflags` $TMPC `"${SDL_CONFIG}" --libs` > /dev/null 2>&1 ; then
|
||||||
|
_sdlversion=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'`
|
||||||
if test "$_sdlversion" -lt 121 ; then
|
if test "$_sdlversion" -lt 121 ; then
|
||||||
sdl_too_old=yes
|
sdl_too_old=yes
|
||||||
else
|
else
|
||||||
@ -1572,8 +1573,8 @@ if test "$pthreads" = "yes" ; then
|
|||||||
fi
|
fi
|
||||||
if test "$sdl" = "yes" ; then
|
if test "$sdl" = "yes" ; then
|
||||||
echo "CONFIG_SDL=yes" >> config.mak
|
echo "CONFIG_SDL=yes" >> config.mak
|
||||||
echo "SDL_LIBS=`sdl-config --libs`" >> config.mak
|
echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak
|
||||||
echo "SDL_CFLAGS=`sdl-config --cflags`" >> config.mak
|
echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak
|
||||||
fi
|
fi
|
||||||
if test "$texi2html" = "yes"; then
|
if test "$texi2html" = "yes"; then
|
||||||
echo "BUILD_DOC=yes" >> config.mak
|
echo "BUILD_DOC=yes" >> config.mak
|
||||||
|
Loading…
x
Reference in New Issue
Block a user