This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:682: checking for a BSD compatible install configure:735: checking whether build environment is sane configure:792: checking whether make sets ${MAKE} configure:838: checking for working aclocal configure:851: checking for working autoconf configure:864: checking for working automake configure:877: checking for working autoheader configure:890: checking for working makeinfo configure:905: checking whether to enable maintainer-specific portions of Makefiles configure:1103: checking for gawk configure:1135: checking for gcc configure:1248: checking whether the C compiler (gcc ) works configure:1264: gcc -o conftest conftest.c 1>&5 configure:1290: checking whether the C compiler (gcc ) is a cross-compiler configure:1295: checking whether we are using GNU C configure:1304: gcc -E conftest.c configure:1323: checking whether gcc accepts -g configure:1355: checking how to run the C preprocessor configure:1376: gcc -E conftest.c >/dev/null 2>conftest.out configure:1435: checking whether ln -s works configure:1458: checking for ranlib configure:1489: checking for uname configure:1526: checking host system type configure:1548: checking for strerror in -lcposix configure:1567: gcc -o conftest -g -O2 conftest.c -lcposix 1>&5 /usr/lib/gcc-lib/i686-pc-cygwin/3.2/../../../../i686-pc-cygwin/bin/ld: cannot find -lcposix collect2: ld returned 1 exit status configure: failed program was: #line 1556 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char strerror(); int main() { strerror() ; return 0; } configure:1590: checking for ANSI C header files configure:1603: gcc -E conftest.c >/dev/null 2>conftest.out configure:1670: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1694: checking for working const configure:1748: gcc -c -g -O2 conftest.c 1>&5 configure:1769: checking for inline configure:1783: gcc -c -g -O2 conftest.c 1>&5 configure:1809: checking for off_t configure:1842: checking for size_t configure:1877: checking for working alloca.h configure:1889: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1910: checking for alloca configure:1943: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2112: checking for unistd.h configure:2122: gcc -E conftest.c >/dev/null 2>conftest.out configure:2151: checking for getpagesize configure:2179: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2204: checking for working mmap configure:2352: gcc -o conftest -g -O2 conftest.c 1>&5 configure: failed program was: #line 2212 "configure" #include "confdefs.h" /* Thanks to Mike Haertel and Jim Avera for this test. Here is a matrix of mmap possibilities: mmap private not fixed mmap private fixed at somewhere currently unmapped mmap private fixed at somewhere already mapped mmap shared not fixed mmap shared fixed at somewhere currently unmapped mmap shared fixed at somewhere already mapped For private mappings, we should verify that changes cannot be read() back from the file, nor mmap's back from the file at a different address. (There have been systems where private was not correctly implemented like the infamous i386 svr4.0, and systems where the VM page cache was not coherent with the filesystem buffer cache like early versions of FreeBSD and possibly contemporary NetBSD.) For shared mappings, we should conversely verify that changes get propogated back to all the places they're supposed to be. Grep wants private fixed already mapped. The main things grep needs to know about mmap are: * does it exist and is it safe to write into the mmap'd area * how to use it (BSD variants) */ #include #include #include /* This mess was copied from the GNU getpagesize.h. */ #ifndef HAVE_GETPAGESIZE # ifdef HAVE_UNISTD_H # include # endif /* Assume that all systems that can run configure have sys/param.h. */ # ifndef HAVE_SYS_PARAM_H # define HAVE_SYS_PARAM_H 1 # endif # ifdef _SC_PAGESIZE # define getpagesize() sysconf(_SC_PAGESIZE) # else /* no _SC_PAGESIZE */ # ifdef HAVE_SYS_PARAM_H # include # ifdef EXEC_PAGESIZE # define getpagesize() EXEC_PAGESIZE # else /* no EXEC_PAGESIZE */ # ifdef NBPG # define getpagesize() NBPG * CLSIZE # ifndef CLSIZE # define CLSIZE 1 # endif /* no CLSIZE */ # else /* no NBPG */ # ifdef NBPC # define getpagesize() NBPC # else /* no NBPC */ # ifdef PAGESIZE # define getpagesize() PAGESIZE # endif /* PAGESIZE */ # endif /* no NBPC */ # endif /* no NBPG */ # endif /* no EXEC_PAGESIZE */ # else /* no HAVE_SYS_PARAM_H */ # define getpagesize() 8192 /* punt totally */ # endif /* no HAVE_SYS_PARAM_H */ # endif /* no _SC_PAGESIZE */ #endif /* no HAVE_GETPAGESIZE */ #ifdef __cplusplus extern "C" { void *malloc(unsigned); } #else char *malloc(); #endif int main() { char *data, *data2, *data3; int i, pagesize; int fd; pagesize = getpagesize(); /* * First, make a file with some known garbage in it. */ data = malloc(pagesize); if (!data) exit(1); for (i = 0; i < pagesize; ++i) *(data + i) = rand(); umask(0); fd = creat("conftestmmap", 0600); if (fd < 0) exit(1); if (write(fd, data, pagesize) != pagesize) exit(1); close(fd); /* * Next, try to mmap the file at a fixed address which * already has something else allocated at it. If we can, * also make sure that we see the same garbage. */ fd = open("conftestmmap", O_RDWR); if (fd < 0) exit(1); data2 = malloc(2 * pagesize); if (!data2) exit(1); data2 += (pagesize - ((int) data2 & (pagesize - 1))) & (pagesize - 1); if (data2 != mmap(data2, pagesize, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_FIXED, fd, 0L)) exit(1); for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data2 + i)) exit(1); /* * Finally, make sure that changes to the mapped area * do not percolate back to the file as seen by read(). * (This is a bug on some variants of i386 svr4.0.) */ for (i = 0; i < pagesize; ++i) *(data2 + i) = *(data2 + i) + 1; data3 = malloc(pagesize); if (!data3) exit(1); if (read(fd, data3, pagesize) != pagesize) exit(1); for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data3 + i)) exit(1); close(fd); unlink("conftestmmap"); exit(0); } configure:2376: checking whether we are using the GNU C Library 2.1 or newer configure:2417: checking for argz.h configure:2427: gcc -E conftest.c >/dev/null 2>conftest.out configure:2417: checking for limits.h configure:2427: gcc -E conftest.c >/dev/null 2>conftest.out configure:2417: checking for locale.h configure:2427: gcc -E conftest.c >/dev/null 2>conftest.out configure:2417: checking for nl_types.h configure:2427: gcc -E conftest.c >/dev/null 2>conftest.out configure:2423:22: nl_types.h: No such file or directory configure: failed program was: #line 2422 "configure" #include "confdefs.h" #include configure:2417: checking for malloc.h configure:2427: gcc -E conftest.c >/dev/null 2>conftest.out configure:2417: checking for stddef.h configure:2427: gcc -E conftest.c >/dev/null 2>conftest.out configure:2417: checking for stdlib.h configure:2427: gcc -E conftest.c >/dev/null 2>conftest.out configure:2417: checking for string.h configure:2427: gcc -E conftest.c >/dev/null 2>conftest.out configure:2417: checking for unistd.h configure:2417: checking for sys/param.h configure:2427: gcc -E conftest.c >/dev/null 2>conftest.out configure:2458: checking for feof_unlocked configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/ccGh4Lqo.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2480: undefined reference to `_feof_unlocked' collect2: ld returned 1 exit status configure: failed program was: #line 2463 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char feof_unlocked(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char feof_unlocked(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_feof_unlocked) || defined (__stub___feof_unlocked) choke me #else feof_unlocked(); #endif ; return 0; } configure:2458: checking for fgets_unlocked configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/ccdIkTUi.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2480: undefined reference to `_fgets_unlocked' collect2: ld returned 1 exit status configure: failed program was: #line 2463 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char fgets_unlocked(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char fgets_unlocked(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_fgets_unlocked) || defined (__stub___fgets_unlocked) choke me #else fgets_unlocked(); #endif ; return 0; } configure:2458: checking for getcwd configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for getegid configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for geteuid configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for getgid configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for getuid configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for mempcpy configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/ccjMZog6.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2480: undefined reference to `_mempcpy' collect2: ld returned 1 exit status configure: failed program was: #line 2463 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char mempcpy(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char mempcpy(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_mempcpy) || defined (__stub___mempcpy) choke me #else mempcpy(); #endif ; return 0; } configure:2458: checking for munmap configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for putenv configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for setenv configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for setlocale configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for stpcpy configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/cctvj5Qm.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2480: undefined reference to `_stpcpy' collect2: ld returned 1 exit status configure: failed program was: #line 2463 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char stpcpy(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char stpcpy(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_stpcpy) || defined (__stub___stpcpy) choke me #else stpcpy(); #endif ; return 0; } configure:2458: checking for strchr configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2470: warning: conflicting types for built-in function `strchr' configure:2458: checking for strcasecmp configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for strdup configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for strtoul configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2458: checking for tsearch configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/ccMkUEpi.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2480: undefined reference to `_tsearch' collect2: ld returned 1 exit status configure: failed program was: #line 2463 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tsearch(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char tsearch(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_tsearch) || defined (__stub___tsearch) choke me #else tsearch(); #endif ; return 0; } configure:2458: checking for __argz_count configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/ccMmEUaf.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2480: undefined reference to `___argz_count' collect2: ld returned 1 exit status configure: failed program was: #line 2463 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char __argz_count(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char __argz_count(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub___argz_count) || defined (__stub_____argz_count) choke me #else __argz_count(); #endif ; return 0; } configure:2458: checking for __argz_stringify configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/ccIYXjSc.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2480: undefined reference to `___argz_stringify' collect2: ld returned 1 exit status configure: failed program was: #line 2463 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char __argz_stringify(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char __argz_stringify(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub___argz_stringify) || defined (__stub_____argz_stringify) choke me #else __argz_stringify(); #endif ; return 0; } configure:2458: checking for __argz_next configure:2486: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/ccQ2AIsk.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2480: undefined reference to `___argz_next' collect2: ld returned 1 exit status configure: failed program was: #line 2463 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char __argz_next(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char __argz_next(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub___argz_next) || defined (__stub_____argz_next) choke me #else __argz_next(); #endif ; return 0; } configure:2526: checking for iconv configure:2544: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/ccRiWRLW.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2538: undefined reference to `_libiconv_open' /cygdrive/c/freeciv-1.13.0/configure:2539: undefined reference to `_libiconv' /cygdrive/c/freeciv-1.13.0/configure:2540: undefined reference to `_libiconv_close' collect2: ld returned 1 exit status configure: failed program was: #line 2534 "configure" #include "confdefs.h" #include #include int main() { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } configure:2566: gcc -o conftest -g -O2 conftest.c -liconv 1>&5 configure:2587: checking for iconv declaration configure:2612: gcc -c -g -O2 conftest.c 1>&5 configure:2602: conflicting types for `libiconv' /usr/include/iconv.h:82: previous declaration of `libiconv' configure: failed program was: #line 2593 "configure" #include "confdefs.h" #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif int main() { ; return 0; } configure:2641: checking for nl_langinfo and CODESET configure:2653: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/cc07cwTc.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2649: undefined reference to `_nl_langinfo' collect2: ld returned 1 exit status configure: failed program was: #line 2646 "configure" #include "confdefs.h" #include int main() { char* cs = nl_langinfo(CODESET); ; return 0; } configure:2676: checking for LC_MESSAGES configure:2688: gcc -o conftest -g -O2 conftest.c 1>&5 configure:2709: checking whether NLS is requested configure:2731: checking whether included gettext is requested configure:2751: checking for libintl.h configure:2761: gcc -E conftest.c >/dev/null 2>conftest.out configure:2778: checking for GNU gettext in libc configure:2792: gcc -o conftest -g -O2 conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/ccoL3heL.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:2787: undefined reference to `_libintl_bindtextdomain' /cygdrive/c/freeciv-1.13.0/configure:2788: undefined reference to `_libintl_gettext' /cygdrive/c/freeciv-1.13.0/configure:2788: undefined reference to `_libintl_ngettext' /cygdrive/c/freeciv-1.13.0/configure:2788: undefined reference to `__nl_msg_cat_cntr' collect2: ld returned 1 exit status configure: failed program was: #line 2783 "configure" #include "confdefs.h" #include extern int _nl_msg_cat_cntr; int main() { bindtextdomain ("", ""); return (int) gettext ("") + (int) ngettext ("", "", 0) + _nl_msg_cat_cntr ; return 0; } configure:2808: checking for GNU gettext in libintl configure:2824: gcc -o conftest -g -O2 conftest.c -lintl -liconv 1>&5 Info: resolving __nl_msg_cat_cntr by linking to __imp___nl_msg_cat_cntr (auto-import) configure:2857: checking for dcgettext configure:2885: gcc -o conftest -g -O2 conftest.c -lintl -liconv 1>&5 configure:2914: checking for msgfmt configure:2948: checking for gmsgfmt configure:2985: checking for xgettext configure:3176: checking for bison configure:3256: checking for catalogs to be installed configure:3302: checking for ngettext in -lc configure:3321: gcc -o conftest -g -O2 conftest.c -lc 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/cc45QWOv.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:3317: undefined reference to `_ngettext' collect2: ld returned 1 exit status configure: failed program was: #line 3310 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char ngettext(); int main() { ngettext() ; return 0; } configure:3398: checking for ngettext in -lintl configure:3417: gcc -o conftest -g -O2 conftest.c -lintl 1>&5 configure:3433: checking whether libintl's ngettext works at runtime configure:3470: gcc -o conftest -g -O2 conftest.c -lintl 1>&5 configure:3651: checking for mingw32 environment configure:3663: gcc -c -g -O2 -Wall conftest.c 1>&5 configure: In function `main': configure:3659: `__MINGW32__' undeclared (first use in this function) configure:3659: (Each undeclared identifier is reported only once configure:3659: for each function it appears in.) configure: failed program was: #line 3656 "configure" #include "confdefs.h" int main() { return __MINGW32__; ; return 0; } configure:4494: checking for X configure:4808: checking for dnet_ntoa in -ldnet configure:4827: gcc -o conftest -g -O2 -Wall conftest.c -ldnet 1>&5 /usr/lib/gcc-lib/i686-pc-cygwin/3.2/../../../../i686-pc-cygwin/bin/ld: cannot find -ldnet collect2: ld returned 1 exit status configure: failed program was: #line 4816 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dnet_ntoa(); int main() { dnet_ntoa() ; return 0; } configure:4849: checking for dnet_ntoa in -ldnet_stub configure:4868: gcc -o conftest -g -O2 -Wall conftest.c -ldnet_stub 1>&5 /usr/lib/gcc-lib/i686-pc-cygwin/3.2/../../../../i686-pc-cygwin/bin/ld: cannot find -ldnet_stub collect2: ld returned 1 exit status configure: failed program was: #line 4857 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dnet_ntoa(); int main() { dnet_ntoa() ; return 0; } configure:4897: checking for gethostbyname configure:4925: gcc -o conftest -g -O2 -Wall conftest.c 1>&5 configure:4995: checking for connect configure:5023: gcc -o conftest -g -O2 -Wall conftest.c 1>&5 configure:5087: checking for remove configure:5115: gcc -o conftest -g -O2 -Wall conftest.c 1>&5 configure:5179: checking for shmat configure:5207: gcc -o conftest -g -O2 -Wall conftest.c 1>&5 /cygdrive/c/DOCUME~1/p-houk.CS/LOCALS~1/Temp/ccwsIZQQ.o: In function `main': /cygdrive/c/freeciv-1.13.0/configure:5201: undefined reference to `_shmat' collect2: ld returned 1 exit status configure: failed program was: #line 5184 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char shmat(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_shmat) || defined (__stub___shmat) choke me #else shmat(); #endif ; return 0; } configure:5228: checking for shmat in -lipc configure:5247: gcc -o conftest -g -O2 -Wall conftest.c -lipc 1>&5 /usr/lib/gcc-lib/i686-pc-cygwin/3.2/../../../../i686-pc-cygwin/bin/ld: cannot find -lipc collect2: ld returned 1 exit status configure: failed program was: #line 5236 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char shmat(); int main() { shmat() ; return 0; } configure:5280: checking for IceConnectionNumber in -lICE configure:5299: gcc -o conftest -g -O2 -Wall -L/usr/X11R6/lib conftest.c -lICE 1>&5 configure:5325: checking whether Xfuncproto was supplied configure:5353: checking for compilable FUNCPROTO definition configure:5384: gcc -c -g -O2 -Wall -I/usr/X11R6/include conftest.c 1>&5 configure:5375:28: X11/Xfuncproto.h: No such file or directory configure: In function `main': configure:5379: warning: implicit declaration of function `exit' configure: failed program was: #line 5372 "configure" #include "confdefs.h" #define FUNCPROTO 15 #include int main() { exit (0) ; return 0; } configure:5384: gcc -c -g -O2 -Wall -I/usr/X11R6/include conftest.c 1>&5 configure:5375:28: X11/Xfuncproto.h: No such file or directory configure: In function `main': configure:5379: warning: implicit declaration of function `exit' configure: failed program was: #line 5372 "configure" #include "confdefs.h" #define FUNCPROTO 11 #include int main() { exit (0) ; return 0; } configure:5384: gcc -c -g -O2 -Wall -I/usr/X11R6/include conftest.c 1>&5 configure:5375:28: X11/Xfuncproto.h: No such file or directory configure: In function `main': configure:5379: warning: implicit declaration of function `exit' configure: failed program was: #line 5372 "configure" #include "confdefs.h" #define FUNCPROTO 3 #include int main() { exit (0) ; return 0; } configure:5384: gcc -c -g -O2 -Wall -I/usr/X11R6/include conftest.c 1>&5 configure:5375:28: X11/Xfuncproto.h: No such file or directory configure: In function `main': configure:5379: warning: implicit declaration of function `exit' configure: failed program was: #line 5372 "configure" #include "confdefs.h" #define FUNCPROTO 1 #include int main() { exit (0) ; return 0; } configure:5384: gcc -c -g -O2 -Wall -I/usr/X11R6/include conftest.c 1>&5 configure:5375:28: X11/Xfuncproto.h: No such file or directory configure: In function `main': configure:5379: warning: implicit declaration of function `exit' configure: failed program was: #line 5372 "configure" #include "confdefs.h" #undef FUNCPROTO #include int main() { exit (0) ; return 0; } configure:5412: checking for workable NARROWPROTO definition configure:5494: gcc -o conftest -g -O2 -Wall -I/usr/X11R6/include -L/usr/X11R6/lib -lSM -lICE -lXaw -lXt -lX11 conftest.c 1>&5 configure:5440:28: X11/Xfuncproto.h: No such file or directory configure:5441:27: X11/Intrinsic.h: No such file or directory configure:5442:28: X11/StringDefs.h: No such file or directory configure:5443:31: X11/Xaw/Scrollbar.h: No such file or directory configure: In function `main': configure:5448: `Widget' undeclared (first use in this function) configure:5448: (Each undeclared identifier is reported only once configure:5448: for each function it appears in.) configure:5448: parse error before "toplevel" configure:5449: `XtAppContext' undeclared (first use in this function) configure:5455: `toplevel' undeclared (first use in this function) configure:5457: warning: implicit declaration of function `XtAppInitialize' configure:5458: `appcon' undeclared (first use in this function) configure:5460: `NULL' undeclared (first use in this function) configure:5465: `scrollbar' undeclared (first use in this function) configure:5467: warning: implicit declaration of function `XtVaCreateManagedWidget' configure:5469: `scrollbarWidgetClass' undeclared (first use in this function) configure:5473: warning: implicit declaration of function `XawScrollbarSetThumb' configure:5475: warning: implicit declaration of function `XtVaGetValues' configure:5477: `XtNtopOfThumb' undeclared (first use in this function) configure:5478: `XtNshown' undeclared (first use in this function) configure:5483: warning: implicit declaration of function `exit' configure: failed program was: #line 5436 "configure" #include "confdefs.h" #define NARROWPROTO 1 #define FUNCPROTO no #include #include #include #include #define TOP_VAL 0.125 #define SHOWN_VAL 0.25 int main (int argc, char ** argv) { Widget toplevel; XtAppContext appcon; Widget scrollbar; double topbuf; double shownbuf; float * top = (float *)(&topbuf); float * shown = (float *)(&shownbuf); toplevel = XtAppInitialize ( &appcon, "FcXTest", NULL, 0, &argc, argv, NULL, NULL, 0 ); scrollbar = XtVaCreateManagedWidget ( "my_scrollbar", scrollbarWidgetClass, toplevel, NULL ); XawScrollbarSetThumb (scrollbar, TOP_VAL, SHOWN_VAL); XtVaGetValues ( scrollbar, XtNtopOfThumb, top, XtNshown, shown, NULL ); if ((*top == TOP_VAL) && (*shown == SHOWN_VAL)) { exit (0); } else { exit (1); } return (0); } configure:5494: gcc -o conftest -g -O2 -Wall -I/usr/X11R6/include -L/usr/X11R6/lib -lSM -lICE -lXaw -lXt -lX11 conftest.c 1>&5 configure:5440:28: X11/Xfuncproto.h: No such file or directory configure:5441:27: X11/Intrinsic.h: No such file or directory configure:5442:28: X11/StringDefs.h: No such file or directory configure:5443:31: X11/Xaw/Scrollbar.h: No such file or directory configure: In function `main': configure:5448: `Widget' undeclared (first use in this function) configure:5448: (Each undeclared identifier is reported only once configure:5448: for each function it appears in.) configure:5448: parse error before "toplevel" configure:5449: `XtAppContext' undeclared (first use in this function) configure:5455: `toplevel' undeclared (first use in this function) configure:5457: warning: implicit declaration of function `XtAppInitialize' configure:5458: `appcon' undeclared (first use in this function) configure:5460: `NULL' undeclared (first use in this function) configure:5465: `scrollbar' undeclared (first use in this function) configure:5467: warning: implicit declaration of function `XtVaCreateManagedWidget' configure:5469: `scrollbarWidgetClass' undeclared (first use in this function) configure:5473: warning: implicit declaration of function `XawScrollbarSetThumb' configure:5475: warning: implicit declaration of function `XtVaGetValues' configure:5477: `XtNtopOfThumb' undeclared (first use in this function) configure:5478: `XtNshown' undeclared (first use in this function) configure:5483: warning: implicit declaration of function `exit' configure: failed program was: #line 5436 "configure" #include "confdefs.h" #undef NARROWPROTO #define FUNCPROTO no #include #include #include #include #define TOP_VAL 0.125 #define SHOWN_VAL 0.25 int main (int argc, char ** argv) { Widget toplevel; XtAppContext appcon; Widget scrollbar; double topbuf; double shownbuf; float * top = (float *)(&topbuf); float * shown = (float *)(&shownbuf); toplevel = XtAppInitialize ( &appcon, "FcXTest", NULL, 0, &argc, argv, NULL, NULL, 0 ); scrollbar = XtVaCreateManagedWidget ( "my_scrollbar", scrollbarWidgetClass, toplevel, NULL ); XawScrollbarSetThumb (scrollbar, TOP_VAL, SHOWN_VAL); XtVaGetValues ( scrollbar, XtNtopOfThumb, top, XtNshown, shown, NULL ); if ((*top == TOP_VAL) && (*shown == SHOWN_VAL)) { exit (0); } else { exit (1); } return (0); } configure:5522: checking whether Xfuncproto was determined configure:5538: checking for Xfuncproto control definition FUNCPROTO configure:5562: checking for Xfuncproto control definition NARROWPROTO configure:5587: checking extra paths for Xpm configure:5663: checking for XOpenDisplay in X library -lX11 configure:5682: gcc -o conftest -g -O2 -Wall conftest.c -L/usr/X11R6/lib -L/lib/noX -lSM -lICE -lX11 1>&5 configure:5712: checking for XShapeCombineMask in X library -lXext configure:5731: gcc -o conftest -g -O2 -Wall conftest.c -L/usr/X11R6/lib -L/lib/noX -lSM -lICE -lXext -lX11 1>&5 configure:5763: checking for main in X library -lXt configure:5778: gcc -o conftest -g -O2 -Wall conftest.c -L/usr/X11R6/lib -L/lib/noX -lXt -lSM -lICE -lXext -lX11 1>&5 configure:5806: checking for main in X library -lXmu configure:5821: gcc -o conftest -g -O2 -Wall conftest.c -L/usr/X11R6/lib -L/lib/noX -lXmu -lXt -lSM -lICE -lXext -lX11 1>&5 configure:5849: checking for XpmReadFileToPixmap in X library -lXpm configure:5868: gcc -o conftest -g -O2 -Wall conftest.c -L/usr/X11R6/lib -L/lib/noX -lXpm -lXmu -lXt -lSM -lICE -lXext -lX11 1>&5 configure:5944: checking for main in X library -lXaw configure:5959: gcc -o conftest -g -O2 -Wall conftest.c -L/usr/X11R6/lib -L/lib/noX -lXaw -lXpm -lXmu -lXt -lSM -lICE -lXext -lX11 1>&5 configure:6221: checking target system type configure:6309: checking for esd-config configure:6344: checking for ESD - version >= 0.0.20 configure:6990: checking for gethostbyname configure:7080: checking for connect configure:7175: checking for readline/readline.h configure:7185: gcc -E conftest.c >/dev/null 2>conftest.out configure:7217: checking for completion_matches in -lreadline configure:7236: gcc -o conftest -g -O2 -Wall conftest.c -lreadline 1>&5 configure:7258: checking for rl_completion_matches in -lreadline configure:7277: gcc -o conftest -g -O2 -Wall conftest.c -lreadline 1>&5 configure:7557: checking whether readline works at runtime configure:7605: gcc -o conftest -g -O2 -Wall conftest.c -lreadline 1>&5 configure:7737: checking for pow configure:7765: gcc -o conftest -g -O2 -Wall conftest.c 1>&5 configure:7831: checking for main in -lnls configure:7846: gcc -o conftest -g -O2 -Wall conftest.c -lnls 1>&5 /usr/lib/gcc-lib/i686-pc-cygwin/3.2/../../../../i686-pc-cygwin/bin/ld: cannot find -lnls collect2: ld returned 1 exit status configure: failed program was: #line 7839 "configure" #include "confdefs.h" int main() { main() ; return 0; } configure:7962: checking for zlib.h configure:7972: gcc -E conftest.c >/dev/null 2>conftest.out configure:7996: checking for gzgets in -lz configure:8015: gcc -o conftest -g -O2 -Wall conftest.c -lz -L/usr/X11R6/lib -L/lib/noX -lXaw -lXpm -lXmu -lXt -lSM -lICE -lXext -lX11 1>&5 configure:8046: checking for ANSI C header files configure:8153: checking for fcntl.h configure:8163: gcc -E conftest.c >/dev/null 2>conftest.out configure:8153: checking for sys/time.h configure:8163: gcc -E conftest.c >/dev/null 2>conftest.out configure:8153: checking for sys/types.h configure:8163: gcc -E conftest.c >/dev/null 2>conftest.out configure:8153: checking for unistd.h configure:8153: checking for sys/utsname.h configure:8163: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for arpa/inet.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for netdb.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for netinet/in.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for pwd.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for sys/ioctl.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for sys/select.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for sys/signal.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for sys/socket.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for sys/termio.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for sys/uio.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8196: checking for termios.h configure:8206: gcc -E conftest.c >/dev/null 2>conftest.out configure:8238: checking for X11/xpm.h configure:8248: gcc -E -I/usr/X11R6/include -I/usr/include/noX conftest.c >/dev/null 2>conftest.out In file included from configure:8244: /usr/include/noX/X11/xpm.h:94:24: X11/Xlib.h: No such file or directory /usr/include/noX/X11/xpm.h:95:25: X11/Xutil.h: No such file or directory configure: failed program was: #line 8243 "configure" #include "confdefs.h" #include