1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
configure:558: checking host system type
configure:611: checking how to run the C preprocessor
configure:632: cc -E conftest.c >/dev/null 2>conftest.out
configure:754: checking for main in -lieee
configure:769: cc -o conftest conftest.c -lieee -lm 1>&5
configure:899: checking for finite
configure:927: cc -o conftest conftest.c -lm 1>&5
configure:899: checking for isnan
configure:927: cc -o conftest conftest.c -lm 1>&5
configure:959: checking for memmove
configure:987: cc -o conftest conftest.c -lm 1>&5
configure:959: checking for difftime
configure:987: cc -o conftest conftest.c -lm 1>&5
configure:959: checking for matherr
configure:987: cc -o conftest conftest.c -lm 1>&5
configure:1021: checking for X
configure:1265: checking for dlopen
configure:1293: cc -o conftest conftest.c -lm 1>&5
/tmp/cc6U3uRn.o: In function `main':
/tmp/cc6U3uRn.o(.text+0x7): undefined reference to `dlopen'
collect2: ld returned 1 exit status
configure: failed program was:
#line 1270 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char dlopen(); below. */
#include <assert.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 dlopen();
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_dlopen) || defined (__stub___dlopen)
choke me
#else
dlopen();
#endif
; return 0; }
configure:1321: checking for dlopen in -ldl
configure:1340: cc -o conftest conftest.c -ldl -lm 1>&5
|