--- qemu/configure 2007-06-23 12:03:35.000000000 -0400 +++ ../062707/qemu/configure 2007-06-28 17:55:52.348903000 -0400 @@ -553,7 +553,7 @@ int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } EOF -if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then +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 @@ -562,6 +562,9 @@ sdl=yes fi fi +if [ -s /tmp/qemu-sdl-config.log ]; then + check_sdl_log=yes +fi # static link with sdl ? if test "$sdl" = "yes" ; then @@ -688,6 +691,11 @@ if test $sdl_too_old = "yes"; then echo "-> Your SDL version is too old - please upgrade to have SDL support" fi +if test "$check_sdl_log" = "yes"; then + echo "The error log from compiling the libSDL test is: " + cat /tmp/qemu-sdl-config.log +fi +/usr/bin/rm -f /tmp/qemu-sdl-config.log #if test "$sdl_static" = "no"; then # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output" #fi