diff configure @ 5954:70b326241d52

More verbose error reporting to configure.log for SDL and fix a long pustanding bug, with type mismatch in test-compile-code (affected eg. cygwin, too)
author atmos4
date Fri, 03 May 2002 20:29:20 +0000
parents 5b8b0027c1e8
children 0121a13ac60c
line wrap: on
line diff
--- a/configure	Fri May 03 19:45:43 2002 +0000
+++ b/configure	Fri May 03 20:29:20 2002 +0000
@@ -2341,9 +2341,9 @@
 
 echocheck "SDL"
 if test -z "$_sdlconfig" ; then
-  if ( sdl-config --version ) >/dev/null 2>&1 ; then
+  if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
     _sdlconfig="sdl-config"
-  elif ( sdl11-config --version ) >/dev/null 2>&1 ; then
+  elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
     _sdlconfig="sdl11-config"
   else
     _sdlconfig=false
@@ -2352,11 +2352,11 @@
 if test "$_sdl" = auto || test "$_sdl" = yes ; then
   cat > $TMPC << EOF
 #include <SDL.h>
-int main(void) { return 0; }
+int main(int argc, char *argv[]) { return 0; }
 EOF
   _sdl=no
-  if "$_sdlconfig" --version >/dev/null 2>&1 ; then
-    if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` ; then
+  if "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
+    if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` >>"$TMPLOG" 2>&1 ; then
       _sdlversion=`$_sdlconfig --version | sed 's/[^0-9]//g'`
         if test "$_sdlversion" -gt 116 ; then
           if test "$_sdlversion" -lt 121 ; then