提交 069b0bda 编写于 作者: T ths

Nicer script formatting, by Ben Taylor.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3072 c046a42c-6fe2-441c-8c8c-71466251a162
上级 5b284968
...@@ -536,58 +536,52 @@ EOF ...@@ -536,58 +536,52 @@ EOF
sdl_too_old=no sdl_too_old=no
if test -z "$sdl" ; then if test -z "$sdl" ; then
sdl_config="sdl-config"
sdl_config="sdl-config" sdl=no
sdl=no sdl_static=no
sdl_static=no
if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then # win32 cross compilation case
# win32 cross compilation case sdl_config="i386-mingw32msvc-sdl-config"
sdl_config="i386-mingw32msvc-sdl-config" sdl=yes
sdl=yes else
else # normal SDL probe
# normal SDL probe
cat > $TMPC << EOF cat > $TMPC << EOF
#include <SDL.h> #include <SDL.h>
#undef main /* We don't want SDL to override our main() */ #undef main /* We don't want SDL to override our main() */
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
EOF EOF
if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /tmp/qemu-$$-sdl-config.log ; then
_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
if test "$_sdlversion" -lt 121 ; then
sdl_too_old=yes
else
if test "$cocoa" = "no" ; then
sdl=yes
fi
fi
if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /tmp/qemu-$$-sdl-config.log ; then # static link with sdl ?
_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'` if test "$sdl" = "yes" ; then
if test "$_sdlversion" -lt 121 ; then aa="no"
sdl_too_old=yes `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
else sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
if test "$cocoa" = "no" ; then if [ "$aa" = "yes" ] ; then
sdl=yes sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
fi fi
fi
if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
# static link with sdl ? sdl_static=yes
if test "$sdl" = "yes" ; then fi
aa="no" fi # static link
`$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes" fi # sdl compile test
sdl_static_libs=`$sdl_config --static-libs 2>/dev/null` fi # cross compilation
if [ "$aa" = "yes" ] ; then
sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
fi
if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
sdl_static=yes
fi
fi # static link
fi # sdl compile test
fi # cross compilation
else else
# Make sure to disable cocoa if sdl was set # Make sure to disable cocoa if sdl was set
if test "$sdl" = "yes" ; then if test "$sdl" = "yes" ; then
cocoa="no" cocoa="no"
coreaudio="no" coreaudio="no"
fi fi
fi # -z $sdl fi # -z $sdl
########################################## ##########################################
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册