This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:566: checking for a BSD compatible install configure:619: checking whether build environment is sane configure:676: checking whether gmake sets ${MAKE} configure:722: checking for working aclocal configure:735: checking for working autoconf configure:748: checking for working automake configure:761: checking for working autoheader configure:774: checking for working makeinfo configure:794: checking for gcc configure:907: checking whether the C compiler (cc -fno-common ) works configure:923: cc -o conftest -fno-common -I/usr/X11R6/include conftest.c 1>&5 configure:949: checking whether the C compiler (cc -fno-common ) is a cross-compiler configure:954: checking whether we are using GNU C configure:963: cc -E conftest.c configure:982: checking whether cc accepts -g configure:1016: checking for ranlib configure:1044: checking for Cygwin environment configure:1060: cc -c -fno-common -I/usr/X11R6/include conftest.c 1>&5 configure: In function `main': configure:1056: error: `__CYGWIN32__' undeclared (first use in this function) configure:1056: error: (Each undeclared identifier is reported only once configure:1056: error: for each function it appears in.) configure: failed program was: #line 1049 "configure" #include "confdefs.h" int main() { #ifndef __CYGWIN__ #define __CYGWIN__ __CYGWIN32__ #endif return __CYGWIN__; ; return 0; } configure:1077: checking for mingw32 environment configure:1089: cc -c -fno-common -I/usr/X11R6/include conftest.c 1>&5 configure: In function `main': configure:1085: error: `__MINGW32__' undeclared (first use in this function) configure:1085: error: (Each undeclared identifier is reported only once configure:1085: error: for each function it appears in.) configure: failed program was: #line 1082 "configure" #include "confdefs.h" int main() { return __MINGW32__; ; return 0; } configure:1108: checking for executable suffix configure:1118: cc -o conftest -fno-common -I/usr/X11R6/include conftest.c 1>&5 configure:1182: checking for sdl-config configure:1217: checking for SDL - version >= 1.2.0 configure:1296: cc -o conftest -fno-common -Wall -g -I/include/SDL -I/include -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/X11R6/include conftest.c -L/lib -lSDL -pthread 1>&5 cc: unrecognized option `-pthread' ld: can't locate file for: -lSDL configure: failed program was: #line 1241 "configure" #include "confdefs.h" #include #include #include #include "SDL.h" char* my_strdup (char *str) { char *new_str; if (str) { new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char)); strcpy (new_str, str); } else new_str = NULL; return new_str; } int main (int argc, char *argv[]) { int major, minor, micro; char *tmp_version; /* This hangs on some systems (?) system ("touch conf.sdltest"); */ { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); } /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = my_strdup("1.2.0"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "1.2.0"); exit(1); } if ((1 > major) || ((1 == major) && (2 > minor)) || ((1 == major) && (2 == minor) && (11 >= micro))) { return 0; } else { return 1; } } configure:1340: cc -o conftest -fno-common -Wall -g -I/include/SDL -I/include -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/X11R6/include conftest.c -L/lib -lSDL -pthread 1>&5 cc: unrecognized option `-pthread' configure: In function `SDL_main': configure:1335: error: number of arguments doesn't match prototype /include/SDL/SDL_main.h:53: error: prototype declaration configure: failed program was: #line 1330 "configure" #include "confdefs.h" #include #include "SDL.h" int main() { return 0; ; return 0; }