This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:560: checking for gcc configure:676: checking whether the C compiler (gcc ) works configure:692: gcc -o conftest conftest.c 1>&5 configure:718: checking whether the C compiler (gcc ) is a cross-compiler configure:723: checking whether we are using GNU C configure:751: checking whether gcc accepts -g configure:819: checking for a BSD compatible install configure:874: checking whether ln -s works configure:897: checking whether make sets ${MAKE} configure:929: checking for dirent.h that defines DIR configure:942: gcc -c -g -O2 conftest.c 1>&5 configure:967: checking for opendir in -ldir configure:986: gcc -o conftest -g -O2 conftest.c -ldir 1>&5 /usr/i386-pc-linux/bin/ld: cannot find -ldir collect2: ld returned 1 exit status configure: failed program was: #line 975 "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:1050: checking how to run the C preprocessor configure:1071: gcc -E conftest.c >/dev/null 2>conftest.out configure:1130: checking for ANSI C header files configure:1143: gcc -E conftest.c >/dev/null 2>conftest.out configure:1210: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1234: checking whether closedir returns void configure:1248: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1275: checking for assert.h configure:1285: gcc -E conftest.c >/dev/null 2>conftest.out configure:1275: checking for float.h configure:1285: gcc -E conftest.c >/dev/null 2>conftest.out configure:1275: checking for limits.h configure:1285: gcc -E conftest.c >/dev/null 2>conftest.out configure:1275: checking for memory.h configure:1285: gcc -E conftest.c >/dev/null 2>conftest.out configure:1275: checking for pwd.h configure:1285: gcc -E conftest.c >/dev/null 2>conftest.out configure:1275: checking for stdlib.h configure:1285: gcc -E conftest.c >/dev/null 2>conftest.out configure:1275: checking for string.h configure:1285: gcc -E conftest.c >/dev/null 2>conftest.out configure:1275: checking for sys/param.h configure:1285: gcc -E conftest.c >/dev/null 2>conftest.out configure:1275: checking for unistd.h configure:1285: gcc -E conftest.c >/dev/null 2>conftest.out configure:1317: checking for ranlib configure:1352: checking host system type configure:1376: checking for libtool object types configure:1428: checking for putenv configure:1456: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1428: checking for strcasecmp configure:1456: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1428: checking for strtol configure:1456: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1428: checking for strstr configure:1456: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1486: checking for bcmp configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1486: checking for bcopy configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1486: checking for bzero configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1486: checking for getcwd configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1486: checking for getwd configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 /tmp/ccn5NvlM.o: In function `main': /mnt/Plamo-Src/jpt1/xdvik-22.15-t1-beta1/texk/kpathsea/configure:1508: the `getwd' function is dangerous and should not be used. configure:1486: checking for index configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1486: checking for memcmp configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1498: warning: conflicting types for built-in function `memcmp' configure:1486: checking for memcpy configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1498: warning: conflicting types for built-in function `memcpy' configure:1486: checking for rindex configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1486: checking for strchr configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1486: checking for strrchr configure:1514: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1540: checking for working const configure:1594: gcc -c -g -O2 conftest.c 1>&5 configure:1617: checking whether the compiler accepts prototypes configure:1629: gcc -c -g -O2 conftest.c 1>&5 configure:1650: checking whether program_invocation_name is predefined configure:1662: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1686: checking whether putenv uses malloc configure:1747: gcc -o conftest -g -O2 conftest.c 1>&5 configure: In function `main': configure:1706: warning: assignment makes pointer from integer without a cast configure:1720: warning: assignment makes pointer from integer without a cast configure: failed program was: #line 1694 "configure" #include "confdefs.h" #define VAR "YOW_VAR" #define STRING1 "GabbaGabbaHey" #define STRING2 "Yow!!" /* should be shorter than STRING1 */ extern char *getenv (); /* in case char* and int don't mix gracefully */ main () { char *str1, *rstr1, *str2, *rstr2; str1 = getenv (VAR); if (str1) exit (1); str1 = malloc (strlen (VAR) + 1 + strlen (STRING1) + 1); if (str1 == 0) exit (2); strcpy (str1, VAR); strcat (str1, "="); strcat (str1, STRING1); if (putenv (str1) < 0) exit (3); rstr1 = getenv (VAR); if (rstr1 == 0) exit (4); rstr1 -= strlen (VAR) + 1; if (strncmp (rstr1, VAR, strlen (VAR))) exit (5); str2 = malloc (strlen (VAR) + 1 + strlen (STRING2) + 1); if (str2 == 0 || str1 == str2) exit (6); strcpy (str2, VAR); strcat (str2, "="); strcat (str2, STRING2); if (putenv (str2) < 0) exit (7); rstr2 = getenv (VAR); if (rstr2 == 0) exit (8); rstr2 -= strlen (VAR) + 1; #if 0 printf ("rstr1=0x%x, rstr2=0x%x\n", rstr1, rstr2); /* * If string from first call was reused for the second call, * you had better not do a free on the first string! */ if (rstr1 == rstr2) printf ("#define SMART_PUTENV\n"); else printf ("#undef SMART_PUTENV\n"); #endif exit (rstr1 == rstr2 ? 0 : 1); } configure:1771: checking whether getcwd uses fork or vfork configure:1791: gcc -o conftest -g -O2 conftest.c 1>&5 configure:1816: checking whether to enable maintainer-specific portions of Makefiles configure:1835: checking for loader (symbol LD) configure:1849: checking for archiver (symbol AR) configure:1863: checking for archiver options (symbol AR_OPTS) configure:1955: checking host system type configure:1987: checking where the main texmf tree is located