This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:572: checking for a BSD compatible install configure:629: checking whether build environment is sane configure:686: checking whether gmake sets ${MAKE} configure:733: checking for working aclocal configure:746: checking for working autoconf configure:759: checking for working automake configure:772: checking for working autoheader configure:785: checking for working makeinfo configure:802: checking for gnutar configure:846: checking for gcc configure:959: checking whether the C compiler (cc -fno-common ) works configure:975: cc -o conftest -fno-common conftest.c 1>&5 configure:1001: checking whether the C compiler (cc -fno-common ) is a cross-compiler configure:1006: checking whether we are using GNU C configure:1015: cc -E conftest.c configure:1034: checking whether cc accepts -g configure:1066: checking how to run the C preprocessor configure:1087: cc -E conftest.c >/dev/null 2>conftest.out configure:1157: checking for a BSD compatible install configure:1214: checking whether ln -s works configure:1235: checking whether gmake sets ${MAKE} configure:1305: checking for sdl-config configure:1340: checking for SDL - version >= 1.1.0 configure:1422: cc -o conftest -fno-common -I/include/SDL -I/include -D_GNU_SOURCE=1 -D_REENTRANT conftest.c -L/lib -lSDL -pthread 1>&5 cc: unrecognized option `-pthread' In file included from /usr/include/machine/types.h:32, from /usr/include/stdlib.h:248, from configure:1367: /usr/include/i386/types.h:72: error: conflicting types for `int8_t' /include/stdint.h:162: error: previous declaration of `int8_t' configure: In function `SDL_main': configure:1388: error: number of arguments doesn't match prototype /include/SDL/SDL_main.h:53: error: prototype declaration configure: failed program was: #line 1364 "configure" #include "confdefs.h" #include #include #include #include "SDL.h" char* my_strdup (char *str) { char *new_str; if (str) { new_str = malloc ((strlen (str) + 1) * sizeof(char)); strcpy (new_str, str); } else new_str = NULL; return new_str; } int main () { int major, minor, micro; char *tmp_version; system ("touch conf.sdltest"); /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = my_strdup("1.1.0"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "1.1.0"); exit(1); } if ((1 > major) || ((1 == major) && (2 > minor)) || ((1 == major) && (2 == minor) && (11 >= micro))) { return 0; } else { printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", 1, 2, 11); printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro); printf("*** best to upgrade to the required version.\n"); printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n"); printf("*** to point to the correct copy of sdl-config, and remove the file\n"); printf("*** config.cache before re-running configure\n"); return 1; } } configure:1466: cc -o conftest -fno-common -I/include/SDL -I/include -D_GNU_SOURCE=1 -D_REENTRANT conftest.c -L/lib -lSDL -pthread 1>&5 cc: unrecognized option `-pthread' configure: In function `SDL_main': configure:1461: error: number of arguments doesn't match prototype /include/SDL/SDL_main.h:53: error: prototype declaration configure: failed program was: #line 1456 "configure" #include "confdefs.h" #include #include "SDL.h" int main() { return 0; ; return 0; }