This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:624: checking host system type configure:679: checking for gcc configure:792: checking whether the C compiler (gcc ) works configure:808: gcc -o conftest -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:834: checking whether the C compiler (gcc ) is a cross-compiler configure:839: checking whether we are using GNU C configure:848: gcc -E conftest.c configure:867: checking whether gcc accepts -g configure:899: checking how to run the C preprocessor configure:920: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:981: checking for ranlib configure:1009: checking whether make sets ${MAKE} configure:1047: checking for a BSD compatible install configure:1104: checking for lint configure:1104: checking for alint configure:1104: checking for lclint configure:1104: checking for tdlint configure:1135: checking for AIX configure:1159: checking for POSIXized ISC configure:1185: checking if you want to see long compiling messages configure:1233: checking if you want to check memory-leaks configure:1257: checking if you want to enable debug-code configure:1299: checking if you want to enable lynx trace code *recommended* configure:1325: checking if you want to turn on gcc warnings configure:1462: checking for ANSI C header files configure:1475: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:1542: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:1566: checking for working const configure:1620: gcc -c -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:1641: checking for inline configure:1655: gcc -c -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:1681: checking for off_t configure:1714: checking for size_t configure:1749: checking for working alloca.h configure:1761: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:1782: checking for alloca configure:1815: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:1984: checking for unistd.h configure:1994: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:2023: checking for getpagesize configure:2051: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:2076: checking for working mmap configure:2224: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure: failed program was: #line 2084 "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:2252: checking for argz.h configure:2262: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:2258: argz.h: No such file or directory configure: failed program was: #line 2257 "configure" #include "confdefs.h" #include configure:2252: checking for limits.h configure:2262: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:2252: checking for locale.h configure:2262: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:2252: checking for nl_types.h configure:2262: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:2252: checking for malloc.h configure:2262: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:2252: checking for string.h configure:2262: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:2252: checking for unistd.h configure:2252: checking for values.h configure:2262: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:2252: checking for sys/param.h configure:2262: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:2292: checking for getcwd configure:2320: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:2292: checking for munmap configure:2320: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:2292: checking for putenv configure:2320: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:2292: checking for setenv configure:2320: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: setenv (code) collect2: ld returned 1 exit status configure: failed program was: #line 2297 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char setenv(); 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 setenv(); 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_setenv) || defined (__stub___setenv) choke me #else setenv(); #endif ; return 0; } configure:2292: checking for setlocale configure:2320: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:2292: checking for strchr configure:2320: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:2292: checking for strcasecmp configure:2320: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:2292: checking for __argz_count configure:2320: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: __argz_count (code) collect2: ld returned 1 exit status configure: failed program was: #line 2297 "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:2292: checking for __argz_stringify configure:2320: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: __argz_stringify (code) collect2: ld returned 1 exit status configure: failed program was: #line 2297 "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:2292: checking for __argz_next configure:2320: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: __argz_next (code) collect2: ld returned 1 exit status configure: failed program was: #line 2297 "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:2349: checking for stpcpy configure:2377: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: stpcpy (code) collect2: ld returned 1 exit status configure: failed program was: #line 2354 "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:2411: checking for LC_MESSAGES configure:2423: gcc -o conftest -O2 -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:2444: checking whether NLS is requested configure:3387: checking if we should use included message-library configure:3503: checking if you want full utility pathnames configure:3528: checking for system mailer configure:3555: checking system mail flags configure:3583: checking for chmod configure:3660: checking for compress configure:3737: checking for cp configure:3814: checking for gzip configure:3891: checking for mkdir configure:3968: checking for mv configure:4045: checking for rm configure:4122: checking for tar configure:4199: checking for touch configure:4276: checking for gunzip configure:4353: checking for unzip configure:4430: checking for bzip2 configure:4507: checking for uudecode configure:4584: checking for zcat configure:4661: checking for zip configure:4738: checking for telnet configure:4815: checking for tn3270 configure:4892: checking for rlogin configure:5056: checking for working const configure:5435: checking if you want socks library configure:5455: checking if you want socks5 library configure:5659: checking for network libraries configure:5670: checking for gethostname configure:5698: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:5836: checking for -linet configure:5850: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -linet -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Can't find library for -linet collect2: ld returned 1 exit status configure: failed program was: #line 5843 "configure" #include "confdefs.h" int main() { main() ; return 0; } configure:5873: checking for socket configure:5901: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:6040: checking for gethostbyname configure:6068: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:6151: checking for strcasecmp configure:6267: checking for inet_aton function configure:6284: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:6384: checking for screen type configure:7383: checking for slang header file configure:7396: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:7485: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: tgoto (code) collect2: ld returned 1 exit status configure: failed program was: #line 7478 "configure" #include "confdefs.h" int main() { char *x=(char*)tgoto("",0,0) ; return 0; } configure:7517: checking for tigetstr in -ltermlib configure:7536: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -ltermlib -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: tigetstr (code) collect2: ld returned 1 exit status configure: failed program was: #line 7525 "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 tigetstr(); int main() { tigetstr() ; return 0; } configure:7559: checking for tgoto in -ltermlib configure:7578: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -ltermlib -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:7777: checking for acos configure:7805: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib -ltermlib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: acos (code) collect2: ld returned 1 exit status configure: failed program was: #line 7782 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos(); 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 acos(); 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_acos) || defined (__stub___acos) choke me #else acos(); #endif ; return 0; } configure:7824: checking for acos in -lm configure:7843: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib -ltermlib -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib -ltermlib 1>&5 configure:7883: checking for SLtt_get_screen_size configure:7911: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib -ltermlib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: SLtt_get_screen_size (code) collect2: ld returned 1 exit status configure: failed program was: #line 7888 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size(); 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 SLtt_get_screen_size(); 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_SLtt_get_screen_size) || defined (__stub___SLtt_get_screen_size) choke me #else SLtt_get_screen_size(); #endif ; return 0; } configure:7931: checking for SLtt_get_screen_size in -lslang configure:7941: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib -ltermlib 1>&5 configure:8009: checking if we can link slang without termcap configure:8024: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:8044: checking for location of config-file configure:8054: checking for ANSI C header files configure:8158: checking whether time.h and sys/time.h may both be included configure:8172: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:8197: checking for dirent.h that defines DIR configure:8210: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:8235: checking for opendir in -ldir configure:8254: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -ldir -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Can't find library for -ldir collect2: ld returned 1 exit status configure: failed program was: #line 8243 "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 opendir(); int main() { opendir() ; return 0; } configure:8334: checking for fcntl.h configure:8344: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8334: checking for limits.h configure:8334: checking for stdlib.h configure:8344: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8334: checking for string.h configure:8334: checking for sys/fcntl.h configure:8344: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8334: checking for sys/filio.h configure:8344: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8340: sys/filio.h: No such file or directory configure: failed program was: #line 8339 "configure" #include "confdefs.h" #include configure:8334: checking for sys/ioctl.h configure:8344: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8334: checking for sys/param.h configure:8334: checking for sys/time.h configure:8344: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8334: checking for termio.h configure:8344: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8334: checking for termios.h configure:8344: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8334: checking for unistd.h configure:8372: checking termio.h and termios.h configure:8391: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:8414: checking for sys/wait.h configure:8424: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8552: checking for union wait configure:8569: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 compiles ok w/o union wait configure:8694: checking for stdarg.h configure:8704: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8694: checking for varargs.h configure:8704: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8731: checking for standard varargs configure:8752: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:8772: checking for uid_t in sys/types.h configure:8806: checking type of array argument to getgroups configure:8839: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:8877: checking for pid_t configure:8910: checking for uid_t in sys/types.h configure:8944: checking for mode_t configure:8980: checking for vfork.h configure:8990: gcc -E -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c >/dev/null 2>conftest.out configure:8986: vfork.h: No such file or directory configure: failed program was: #line 8985 "configure" #include "confdefs.h" #include configure:9015: checking for working vfork configure:9166: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9190: checking if we should use fcntl or ioctl configure:9208: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9257: checking for broken/missing definition of remove configure:9270: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9310: checking for lstat configure:9325: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9360: checking for cuserid configure:9388: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9360: checking for getcwd configure:9360: checking for getgroups configure:9388: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9360: checking for gettimeofday configure:9388: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9360: checking for popen configure:9388: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9360: checking for putenv configure:9360: checking for readdir configure:9388: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9360: checking for strerror configure:9388: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9360: checking for unsetenv configure:9388: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: unsetenv (code) collect2: ld returned 1 exit status configure: failed program was: #line 9365 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char unsetenv(); 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 unsetenv(); 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_unsetenv) || defined (__stub___unsetenv) choke me #else unsetenv(); #endif ; return 0; } configure:9360: checking for waitpid configure:9388: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9418: checking for mktime configure:9446: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9418: checking for strstr configure:9446: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9477: checking for strstr declaration configure:9491: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure: In function `main': configure:9486: conflicting types for `strstr' /pkg/lib/gcc-lib/hppa1.1-hp-hpux10.20/2.95.2/include/string.h:37: previous declaration of `strstr' configure:9486: warning: extern declaration of `strstr' doesn't match global one configure: failed program was: #line 9482 "configure" #include "confdefs.h" #include int main() { #ifndef strstr extern int strstr(); #endif ; return 0; } configure:9546: checking for getgrgid declaration configure:9562: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure: In function `main': configure:9557: conflicting types for `getgrgid' /usr/include/grp.h:32: previous declaration of `getgrgid' configure:9557: warning: extern declaration of `getgrgid' doesn't match global one configure: failed program was: #line 9551 "configure" #include "confdefs.h" #include #include int main() { #ifndef getgrgid extern int getgrgid(); #endif ; return 0; } configure:9546: checking for getgrnam declaration configure:9562: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure: In function `main': configure:9557: conflicting types for `getgrnam' /usr/include/grp.h:33: previous declaration of `getgrnam' configure:9557: warning: extern declaration of `getgrnam' doesn't match global one configure: failed program was: #line 9551 "configure" #include "confdefs.h" #include #include int main() { #ifndef getgrnam extern int getgrnam(); #endif ; return 0; } configure:9619: checking if TRUE/FALSE are defined configure:9634: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:9661: checking if external errno is declared configure:9680: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:9711: checking if external errno exists configure:9727: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9759: checking for setlocale() configure:9772: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9793: checking if NGROUPS is defined configure:9813: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:9869: checking if external sys_nerr is declared configure:9888: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure: In function `main': configure:9885: `sys_nerr' undeclared (first use in this function) configure:9885: (Each undeclared identifier is reported only once configure:9885: for each function it appears in.) configure: failed program was: #line 9875 "configure" #include "confdefs.h" #if HAVE_STDLIB_H #include #endif #include #include #include int main() { long x = (long) sys_nerr ; return 0; } configure:9919: checking if external sys_nerr exists configure:9935: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9869: checking if external sys_errlist is declared configure:9888: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure: In function `main': configure:9885: `sys_errlist' undeclared (first use in this function) configure:9885: (Each undeclared identifier is reported only once configure:9885: for each function it appears in.) configure: failed program was: #line 9875 "configure" #include "confdefs.h" #if HAVE_STDLIB_H #include #endif #include #include #include int main() { long x = (long) sys_errlist ; return 0; } configure:9919: checking if external sys_errlist exists configure:9935: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:9968: checking if struct utmp is declared configure:9983: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure:10026: checking if external h_errno exists configure:10042: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:10073: checking if character set is EBCDIC configure:10092: gcc -c -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5 configure: In function `main': configure:10087: `make' undeclared (first use in this function) configure:10087: (Each undeclared identifier is reported only once configure:10087: for each function it appears in.) configure:10087: parse error before `an' configure: failed program was: #line 10079 "configure" #include "confdefs.h" int main() { /* TryCompile function for CharSet. Treat any failure as ASCII for compatibility with existing art. Use compile-time rather than run-time tests for cross-compiler tolerance. */ #if '0'!=240 make an error "Character set is not EBCDIC" #endif ; return 0; } configure:10559: checking if configuration info should be browsable configure:10583: checking if new-style forms-based options screen should be used configure:10607: checking if old-style options menu should be used configure:10631: checking if experimental address-list page should be used configure:10655: checking if color-style code should be used configure:10721: checking if you want to use default-colors configure:10746: checking if experimental keyboard-layout logic should be used configure:10771: checking if html source should be colorized configure:10795: checking if source caching should be used configure:10822: checking if alternative line-edit bindings should be used configure:10846: checking if you want to use extended HTML DTD logic configure:10870: checking if partial-display should be used configure:10894: checking if you want to use external commands configure:10918: checking if you want to use setfont support configure:10942: checking if you want cgi-link support configure:10961: checking if you want exec-links support configure:10980: checking if you want exec-scripts support configure:10999: checking if you want internal-links feature configure:11023: checking if you want to fork NSL requests configure:11047: checking if you want to log URL requests via syslog configure:11071: checking if persistent-cookie logic should be used configure:11095: checking if you want to underline links configure:11119: checking if help files should be gzip'ed configure:11148: checking if you want to use zlib for decompression of some gzip files configure:11165: checking for gzopen configure:11193: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 /usr/ccs/bin/ld: Unsatisfied symbols: gzopen (code) collect2: ld returned 1 exit status configure: failed program was: #line 11170 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gzopen(); 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 gzopen(); 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_gzopen) || defined (__stub___gzopen) choke me #else gzopen(); #endif ; return 0; } configure:11213: checking for gzopen in -lz configure:11223: gcc -o conftest -O2 -DSNAKE -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c -lz -lslang -lm -L/usr/home/dslotho/lynx/slang-1.4.0/lib -L/usr/local/lib 1>&5 configure:11296: checking if you want to exclude FINGER code configure:11320: checking if you want to exclude GOPHER code configure:11344: checking if you want to exclude NEWS code configure:11368: checking if you want to exclude FTP code configure:11397: checking if directory-editor code should be used configure:11423: checking if you wish to allow extracting from archives via DirEd configure:11442: checking if you wish to allow users to redefine DirEd keys configure:11468: checking if you wish to allow permissions commands via DirEd configure:11494: checking if you wish to allow executable-permission commands via DirEd configure:11513: checking if you wish to allow tar commands from DirEd configure:11539: checking if you wish to allow uudecode commands from DirEd configure:11565: checking if you wish to allow zip and unzip commands from DirEd configure:11591: checking if you wish to allow gzip and gunzip commands from DirEd configure:11618: checking if you want long-directory listings configure:11644: checking if parent-directory references are permitted configure:11664: checking if we can include termio.h with curses configure:11682: gcc -c -O2 -DSNAKE -DHAVE_CONFIG_H -I. -I. -I./src -I./WWW/Library/Implementation -I/usr/home/dslotho/lynx/slang-1.4.0 -I/usr/local/include -I/pkg/include conftest.c 1>&5