This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:679: checking whether gmake sets ${MAKE} configure:708: checking for gcc configure:824: checking whether the C compiler (cc -fno-common -I/usr/local/include ) works configure:840: cc -o conftest -fno-common -I/usr/local/include conftest.c 1>&5 configure:866: checking whether the C compiler (cc -fno-common -I/usr/local/include ) is a cross-compiler configure:871: checking whether we are using GNU C configure:880: cc -E conftest.c configure:899: checking whether cc accepts -g configure:958: checking host system type configure:979: checking target system type configure:997: checking build system type configure:1021: checking whether to define additional compiler specific flags configure:1045: checking for sys/wait.h that is POSIX.1 compatible configure:1066: cc -c -fno-common -I/usr/local/include conftest.c 1>&5 configure:1099: checking for a BSD compatible install configure:1154: checking whether gmake sets ${MAKE} configure:1181: checking whether ln -s works configure:1204: checking how to run the C preprocessor configure:1225: cc -E conftest.c >/dev/null 2>conftest.out configure:1286: checking for working alloca.h configure:1298: cc -o conftest -fno-common -I/usr/local/include conftest.c 1>&5 configure:1319: checking for alloca configure:1352: cc -o conftest -fno-common -I/usr/local/include conftest.c 1>&5 configure:1520: checking for ranlib configure:1553: checking for X configure:1992: checking whether to enable maintainer-specific portions of Makefiles configure:2011: checking for loader (symbol LD) configure:2025: checking for archiver (symbol AR) configure:2039: checking for archiver options (symbol ARFLAGS) configure:2115: checking host system type configure:2148: checking where the main texmf tree is located configure:2522: checking for T1_AddFont in -lt1 configure:2541: cc -o conftest -fno-common -I/usr/local/include -L/usr/local/lib conftest.c -lt1 -lz -lm 1>&5 configure:2568: checking whether installed T1 lib is >= v 1.3.1 configure:2605: cc -o conftest -fno-common -I/usr/local/include -L/usr/local/lib -L/usr/local/lib -lt1 -lm conftest.c 1>&5 ld: Undefined symbols: _T1_GetLibIdent configure: failed program was: #line 2574 "configure" #include "confdefs.h" #include #include "t1lib.h" #define BUFLEN 128 int main() { char *t1libId = T1_GetLibIdent(); char testbuf[BUFLEN]; char *p = testbuf; int i; int version_num; /* T1_GetLibIdent() might return something like '0.8-beta2'; convert the leading numbers to a single digit: */ for (i = 0; i < BUFLEN; i++) { if (t1libId[i] >= '0' && t1libId[i] <= '9') *p++ = t1libId[i]; else if (t1libId[i] != '.' && t1libId[i] != '_' && t1libId[i] != '-') break; } version_num = strtoul(testbuf, (char **)NULL, 10); /* xdvik needs >= 1.2.0 for parsing dvips map files. Try to deal with version strings with 1 or more digits. */ if (version_num >= 120 || (version_num < 100 && version_num >= 12) || (version_num < 10 && version_num >= 2)) exit(0); exit(1); }