This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by qpdf configure 5.1.2, which was generated by GNU Autoconf 2.69. Invocation command line was $ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --build=i686-uhu-linux --host=i686-uhu-linux --disable-static CFLAGS=-O2 -march=i686 -mtune=generic ## --------- ## ## Platform. ## ## --------- ## hostname = hp10 uname -m = i686 uname -r = 3.15.0-rc8-2.i386 uname -s = Linux uname -v = #2 SMP Thu Jun 5 11:08:29 UTC 2014 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/lib/uhubuild PATH: /usr/lib/ccache PATH: /sbin PATH: /usr/sbin PATH: /bin PATH: /usr/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2429: checking for i686-uhu-linux-gcc configure:2445: found /usr/bin/i686-uhu-linux-gcc configure:2456: result: i686-uhu-linux-gcc configure:2725: checking for C compiler version configure:2734: i686-uhu-linux-gcc --version >&5 i686-uhu-linux-gcc (GCC) 4.8.3 Copyright (C) 2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:2745: $? = 0 configure:2734: i686-uhu-linux-gcc -v >&5 Using built-in specs. COLLECT_GCC=i686-uhu-linux-gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/i686-uhu-linux/4.8.3/lto-wrapper Target: i686-uhu-linux Configured with: /var/uhubuild/work/compile/configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --build=i686-uhu-linux --host=i686-uhu-linux --target=i686-uhu-linux --enable-languages=c,c++,objc,java,fortran --enable-shared --enable-targets=all --disable-multilib --with-gnu-as --with-gnu-ld --with-system-zlib --with-arch-32=i686 --with-arch-64=core2 --with-cpu-32=i686 --with-cpu-64=core2 --with-tune=generic Thread model: posix gcc version 4.8.3 (GCC) configure:2745: $? = 0 configure:2734: i686-uhu-linux-gcc -V >&5 i686-uhu-linux-gcc: error: unrecognized command line option '-V' i686-uhu-linux-gcc: fatal error: no input files compilation terminated. configure:2745: $? = 1 configure:2734: i686-uhu-linux-gcc -qversion >&5 i686-uhu-linux-gcc: error: unrecognized command line option '-qversion' i686-uhu-linux-gcc: fatal error: no input files compilation terminated. configure:2745: $? = 1 configure:2765: checking whether the C compiler works configure:2787: i686-uhu-linux-gcc -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2791: $? = 0 configure:2839: result: yes configure:2842: checking for C compiler default output file name configure:2844: result: a.out configure:2850: checking for suffix of executables configure:2857: i686-uhu-linux-gcc -o conftest -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2861: $? = 0 configure:2883: result: configure:2905: checking whether we are cross compiling configure:2913: i686-uhu-linux-gcc -o conftest -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2917: $? = 0 configure:2924: ./conftest configure:2928: $? = 0 configure:2943: result: no configure:2948: checking for suffix of object files configure:2970: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2974: $? = 0 configure:2995: result: o configure:2999: checking whether we are using the GNU C compiler configure:3018: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:3018: $? = 0 configure:3027: result: yes configure:3036: checking whether i686-uhu-linux-gcc accepts -g configure:3056: i686-uhu-linux-gcc -c -g conftest.c >&5 configure:3056: $? = 0 configure:3097: result: yes configure:3114: checking for i686-uhu-linux-gcc option to accept ISO C89 configure:3177: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:3177: $? = 0 configure:3190: result: none needed configure:3210: checking for i686-uhu-linux-gcc option to accept ISO C99 configure:3359: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 conftest.c:59:29: error: expected ';', ',' or ')' before 'text' test_restrict (ccp restrict text) ^ conftest.c: In function 'main': conftest.c:113:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' char *restrict newvar = "Another string"; ^ conftest.c:113:18: error: 'newvar' undeclared (first use in this function) conftest.c:113:18: note: each undeclared identifier is reported only once for each function it appears in conftest.c:123:3: error: 'for' loop initial declarations are only allowed in C99 mode for (int i = 0; i < ia->datasize; ++i) ^ conftest.c:123:3: note: use option -std=c99 or -std=gnu99 to compile your code configure:3359: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "qpdf" | #define PACKAGE_TARNAME "qpdf" | #define PACKAGE_VERSION "5.1.2" | #define PACKAGE_STRING "qpdf 5.1.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:3359: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:3359: $? = 0 configure:3379: result: -std=gnu99 configure:3401: checking for i686-uhu-linux-g++ configure:3417: found /usr/bin/i686-uhu-linux-g++ configure:3428: result: i686-uhu-linux-g++ configure:3499: checking for C++ compiler version configure:3508: i686-uhu-linux-g++ --version >&5 i686-uhu-linux-g++ (GCC) 4.8.3 Copyright (C) 2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3519: $? = 0 configure:3508: i686-uhu-linux-g++ -v >&5 Using built-in specs. COLLECT_GCC=i686-uhu-linux-g++ COLLECT_LTO_WRAPPER=/usr/libexec/gcc/i686-uhu-linux/4.8.3/lto-wrapper Target: i686-uhu-linux Configured with: /var/uhubuild/work/compile/configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --build=i686-uhu-linux --host=i686-uhu-linux --target=i686-uhu-linux --enable-languages=c,c++,objc,java,fortran --enable-shared --enable-targets=all --disable-multilib --with-gnu-as --with-gnu-ld --with-system-zlib --with-arch-32=i686 --with-arch-64=core2 --with-cpu-32=i686 --with-cpu-64=core2 --with-tune=generic Thread model: posix gcc version 4.8.3 (GCC) configure:3519: $? = 0 configure:3508: i686-uhu-linux-g++ -V >&5 i686-uhu-linux-g++: error: unrecognized command line option '-V' i686-uhu-linux-g++: fatal error: no input files compilation terminated. configure:3519: $? = 1 configure:3508: i686-uhu-linux-g++ -qversion >&5 i686-uhu-linux-g++: error: unrecognized command line option '-qversion' i686-uhu-linux-g++: fatal error: no input files compilation terminated. configure:3519: $? = 1 configure:3523: checking whether we are using the GNU C++ compiler configure:3542: i686-uhu-linux-g++ -c conftest.cpp >&5 configure:3542: $? = 0 configure:3551: result: yes configure:3560: checking whether i686-uhu-linux-g++ accepts -g configure:3580: i686-uhu-linux-g++ -c -g conftest.cpp >&5 configure:3580: $? = 0 configure:3621: result: yes configure:3650: checking how to run the C preprocessor configure:3681: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:3681: $? = 0 configure:3695: i686-uhu-linux-gcc -std=gnu99 -E conftest.c conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:3695: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "qpdf" | #define PACKAGE_TARNAME "qpdf" | #define PACKAGE_VERSION "5.1.2" | #define PACKAGE_STRING "qpdf 5.1.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include configure:3720: result: i686-uhu-linux-gcc -std=gnu99 -E configure:3740: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:3740: $? = 0 configure:3754: i686-uhu-linux-gcc -std=gnu99 -E conftest.c conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:3754: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "qpdf" | #define PACKAGE_TARNAME "qpdf" | #define PACKAGE_VERSION "5.1.2" | #define PACKAGE_STRING "qpdf 5.1.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include configure:3783: checking for grep that handles long lines and -e configure:3841: result: /bin/grep configure:3846: checking for egrep configure:3908: result: /bin/grep -E configure:3913: checking for ANSI C header files configure:3933: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:3933: $? = 0 configure:4006: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic conftest.c >&5 configure:4006: $? = 0 configure:4006: ./conftest configure:4006: $? = 0 configure:4017: result: yes configure:4083: checking build system type configure:4097: result: i686-uhu-linux-gnu configure:4117: checking host system type configure:4130: result: i686-uhu-linux-gnu configure:4171: checking how to print strings configure:4198: result: printf configure:4219: checking for a sed that does not truncate output configure:4283: result: /bin/sed configure:4301: checking for fgrep configure:4363: result: /bin/grep -F configure:4398: checking for ld used by i686-uhu-linux-gcc -std=gnu99 configure:4465: result: /usr/bin/ld configure:4472: checking if the linker (/usr/bin/ld) is GNU ld configure:4487: result: yes configure:4499: checking for BSD- or MS-compatible name lister (nm) configure:4548: result: /usr/bin/nm -B configure:4678: checking the name lister (/usr/bin/nm -B) interface configure:4685: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:4688: /usr/bin/nm -B "conftest.o" configure:4691: output 00000000 B some_variable configure:4698: result: BSD nm configure:4701: checking whether ln -s works configure:4705: result: yes configure:4713: checking the maximum length of command line arguments configure:4843: result: 1572864 configure:4860: checking whether the shell understands some XSI constructs configure:4870: result: yes configure:4874: checking whether the shell understands "+=" configure:4880: result: yes configure:4915: checking how to convert i686-uhu-linux-gnu file names to i686-uhu-linux-gnu format configure:4955: result: func_convert_file_noop configure:4962: checking how to convert i686-uhu-linux-gnu file names to toolchain format configure:4982: result: func_convert_file_noop configure:4989: checking for /usr/bin/ld option to reload object files configure:4996: result: -r configure:5030: checking for i686-uhu-linux-objdump configure:5060: result: no configure:5070: checking for objdump configure:5086: found /usr/bin/objdump configure:5097: result: objdump configure:5126: checking how to recognize dependent libraries configure:5328: result: pass_all configure:5373: checking for i686-uhu-linux-dlltool configure:5403: result: no configure:5413: checking for dlltool configure:5443: result: no configure:5470: checking how to associate runtime and link libraries configure:5497: result: printf %s\n configure:5513: checking for i686-uhu-linux-ar configure:5529: found /usr/bin/i686-uhu-linux-ar configure:5540: result: i686-uhu-linux-ar configure:5621: checking for archiver @FILE support configure:5638: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:5638: $? = 0 configure:5641: i686-uhu-linux-ar cru libconftest.a @conftest.lst >&5 configure:5644: $? = 0 configure:5649: i686-uhu-linux-ar cru libconftest.a @conftest.lst >&5 i686-uhu-linux-ar: conftest.o: No such file or directory configure:5652: $? = 1 configure:5664: result: @ configure:5682: checking for i686-uhu-linux-strip configure:5712: result: no configure:5722: checking for strip configure:5738: found /usr/bin/strip configure:5749: result: strip configure:5781: checking for i686-uhu-linux-ranlib configure:5811: result: no configure:5821: checking for ranlib configure:5837: found /usr/bin/ranlib configure:5848: result: ranlib configure:5925: checking for gawk configure:5941: found /bin/gawk configure:5952: result: gawk configure:5992: checking command to parse /usr/bin/nm -B output from i686-uhu-linux-gcc -std=gnu99 object configure:6112: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:6115: $? = 0 configure:6119: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm configure:6122: $? = 0 configure:6188: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic conftest.c conftstm.o >&5 configure:6191: $? = 0 configure:6229: result: ok configure:6266: checking for sysroot configure:6296: result: no configure:6512: checking for i686-uhu-linux-mt configure:6542: result: no configure:6552: checking for mt configure:6582: result: no configure:6602: checking if : is a manifest tool configure:6608: : '-?' configure:6616: result: no configure:7258: checking for sys/types.h configure:7258: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:7258: $? = 0 configure:7258: result: yes configure:7258: checking for sys/stat.h configure:7258: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:7258: $? = 0 configure:7258: result: yes configure:7258: checking for stdlib.h configure:7258: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:7258: $? = 0 configure:7258: result: yes configure:7258: checking for string.h configure:7258: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:7258: $? = 0 configure:7258: result: yes configure:7258: checking for memory.h configure:7258: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:7258: $? = 0 configure:7258: result: yes configure:7258: checking for strings.h configure:7258: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:7258: $? = 0 configure:7258: result: yes configure:7258: checking for inttypes.h configure:7258: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:7258: $? = 0 configure:7258: result: yes configure:7258: checking for stdint.h configure:7258: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:7258: $? = 0 configure:7258: result: yes configure:7258: checking for unistd.h configure:7258: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:7258: $? = 0 configure:7258: result: yes configure:7272: checking for dlfcn.h configure:7272: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:7272: $? = 0 configure:7272: result: yes configure:7787: checking for objdir configure:7802: result: .libs configure:8073: checking if i686-uhu-linux-gcc -std=gnu99 supports -fno-rtti -fno-exceptions configure:8091: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default] configure:8095: $? = 0 configure:8108: result: no configure:8435: checking for i686-uhu-linux-gcc -std=gnu99 option to produce PIC configure:8442: result: -fPIC -DPIC configure:8450: checking if i686-uhu-linux-gcc -std=gnu99 PIC flag -fPIC -DPIC works configure:8468: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -fPIC -DPIC -DPIC conftest.c >&5 configure:8472: $? = 0 configure:8485: result: yes configure:8514: checking if i686-uhu-linux-gcc -std=gnu99 static flag -static works configure:8542: result: yes configure:8557: checking if i686-uhu-linux-gcc -std=gnu99 supports -c -o file.o configure:8578: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -o out/conftest2.o conftest.c >&5 configure:8582: $? = 0 configure:8604: result: yes configure:8612: checking if i686-uhu-linux-gcc -std=gnu99 supports -c -o file.o configure:8659: result: yes configure:8692: checking whether the i686-uhu-linux-gcc -std=gnu99 linker (/usr/bin/ld) supports shared libraries configure:9849: result: yes configure:9886: checking whether -lc should be explicitly linked in configure:9894: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:9897: $? = 0 configure:9912: i686-uhu-linux-gcc -std=gnu99 -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 configure:9915: $? = 0 configure:9929: result: no configure:10089: checking dynamic linker characteristics configure:10600: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wl,-rpath -Wl,/foo conftest.c >&5 configure:10600: $? = 0 configure:10834: result: GNU/Linux ld.so configure:10941: checking how to hardcode library paths into programs configure:10966: result: immediate configure:11506: checking whether stripping libraries is possible configure:11511: result: yes configure:11546: checking if libtool supports shared libraries configure:11548: result: yes configure:11551: checking whether to build shared libraries configure:11572: result: yes configure:11575: checking whether to build static libraries configure:11579: result: no configure:11602: checking how to run the C++ preprocessor configure:11629: i686-uhu-linux-g++ -E conftest.cpp configure:11629: $? = 0 configure:11643: i686-uhu-linux-g++ -E conftest.cpp conftest.cpp:21:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:11643: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "qpdf" | #define PACKAGE_TARNAME "qpdf" | #define PACKAGE_VERSION "5.1.2" | #define PACKAGE_STRING "qpdf 5.1.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include configure:11668: result: i686-uhu-linux-g++ -E configure:11688: i686-uhu-linux-g++ -E conftest.cpp configure:11688: $? = 0 configure:11702: i686-uhu-linux-g++ -E conftest.cpp conftest.cpp:21:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:11702: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "qpdf" | #define PACKAGE_TARNAME "qpdf" | #define PACKAGE_VERSION "5.1.2" | #define PACKAGE_STRING "qpdf 5.1.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include configure:11871: checking for ld used by i686-uhu-linux-g++ configure:11938: result: /usr/bin/ld configure:11945: checking if the linker (/usr/bin/ld) is GNU ld configure:11960: result: yes configure:12015: checking whether the i686-uhu-linux-g++ linker (/usr/bin/ld) supports shared libraries configure:13020: result: yes configure:13056: i686-uhu-linux-g++ -c -g -O2 conftest.cpp >&5 configure:13059: $? = 0 configure:13579: checking for i686-uhu-linux-g++ option to produce PIC configure:13586: result: -fPIC -DPIC configure:13594: checking if i686-uhu-linux-g++ PIC flag -fPIC -DPIC works configure:13612: i686-uhu-linux-g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5 configure:13616: $? = 0 configure:13629: result: yes configure:13652: checking if i686-uhu-linux-g++ static flag -static works configure:13680: result: yes configure:13692: checking if i686-uhu-linux-g++ supports -c -o file.o configure:13713: i686-uhu-linux-g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5 configure:13717: $? = 0 configure:13739: result: yes configure:13744: checking if i686-uhu-linux-g++ supports -c -o file.o configure:13791: result: yes configure:13821: checking whether the i686-uhu-linux-g++ linker (/usr/bin/ld) supports shared libraries configure:13860: result: yes configure:14001: checking dynamic linker characteristics configure:14680: result: GNU/Linux ld.so configure:14733: checking how to hardcode library paths into programs configure:14758: result: immediate configure:14838: result: no configure:14854: result: yes configure:14871: checking for "/dev/urandom" configure:14885: result: yes configure:14953: checking for whether to use external libraries distribution configure:14967: result: no configure:14995: checking zlib.h usability configure:14995: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:14995: $? = 0 configure:14995: result: yes configure:14995: checking zlib.h presence configure:14995: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:14995: $? = 0 configure:14995: result: yes configure:14995: checking for zlib.h configure:14995: result: yes configure:15003: checking for library containing deflate configure:15034: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic conftest.c >&5 /tmp/ccBVkFLu.o: In function `main': conftest.c:(.text.startup+0x7): undefined reference to `deflate' collect2: error: ld returned 1 exit status configure:15034: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "qpdf" | #define PACKAGE_TARNAME "qpdf" | #define PACKAGE_VERSION "5.1.2" | #define PACKAGE_STRING "qpdf 5.1.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_RANDOM_DEVICE 1 | #define RANDOM_DEVICE "/dev/urandom" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char deflate (); | int | main () | { | return deflate (); | ; | return 0; | } configure:15034: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic conftest.c -lz >&5 configure:15034: $? = 0 configure:15051: result: -lz configure:15061: checking pcre.h usability configure:15061: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:15061: $? = 0 configure:15061: result: yes configure:15061: checking pcre.h presence configure:15061: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:15061: $? = 0 configure:15061: result: yes configure:15061: checking for pcre.h configure:15061: result: yes configure:15069: checking for library containing pcre_compile configure:15100: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic conftest.c -lz >&5 /tmp/cccN9z2N.o: In function `main': conftest.c:(.text.startup+0x7): undefined reference to `pcre_compile' collect2: error: ld returned 1 exit status configure:15100: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "qpdf" | #define PACKAGE_TARNAME "qpdf" | #define PACKAGE_VERSION "5.1.2" | #define PACKAGE_STRING "qpdf 5.1.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_RANDOM_DEVICE 1 | #define RANDOM_DEVICE "/dev/urandom" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char pcre_compile (); | int | main () | { | return pcre_compile (); | ; | return 0; | } configure:15100: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic conftest.c -lpcre -lz >&5 configure:15100: $? = 0 configure:15117: result: -lpcre configure:15132: checking for Advapi32 library configure:15149: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic conftest.c -lpcre -lz Advapi32.lib >&5 i686-uhu-linux-gcc: error: Advapi32.lib: No such file or directory configure:15149: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "qpdf" | #define PACKAGE_TARNAME "qpdf" | #define PACKAGE_VERSION "5.1.2" | #define PACKAGE_STRING "qpdf 5.1.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_RANDOM_DEVICE 1 | #define RANDOM_DEVICE "/dev/urandom" | /* end confdefs.h. */ | #pragma comment(lib, "crypt32.lib") | #include | #include | HCRYPTPROV cp; | int | main () | { | CryptAcquireContext(&cp, NULL, NULL, PROV_RSA_FULL, 0); | | ; | return 0; | } configure:15154: result: no configure:15180: checking for special C compiler options needed for large files configure:15225: result: no configure:15231: checking for _FILE_OFFSET_BITS value needed for large files configure:15256: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 conftest.c:29:7: error: size of array 'off_t_is_large' is negative int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 ^ configure:15256: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "qpdf" | #define PACKAGE_TARNAME "qpdf" | #define PACKAGE_VERSION "5.1.2" | #define PACKAGE_STRING "qpdf 5.1.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_RANDOM_DEVICE 1 | #define RANDOM_DEVICE "/dev/urandom" | /* end confdefs.h. */ | #include | /* Check that off_t can represent 2**63 - 1 correctly. | We can't simply define LARGE_OFF_T to be 9223372036854775807, | since some C++ compilers masquerading as C compilers | incorrectly reject 9223372036854775807. */ | #define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | && LARGE_OFF_T % 2147483647 == 1) | ? 1 : -1]; | int | main () | { | | ; | return 0; | } configure:15280: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:15280: $? = 0 configure:15288: result: 64 configure:15373: checking for _LARGEFILE_SOURCE value needed for large files configure:15392: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic conftest.c -lpcre -lz >&5 configure:15392: $? = 0 configure:15420: result: no configure:15443: checking for fseeko64 configure:15443: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic conftest.c -lpcre -lz >&5 configure:15443: $? = 0 configure:15443: result: yes configure:15452: checking for uint16_t configure:15452: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:15452: $? = 0 configure:15452: result: yes configure:15464: checking for uint32_t configure:15464: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:15464: $? = 0 configure:15464: result: yes configure:15481: checking for random configure:15481: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic conftest.c -lpcre -lz >&5 configure:15481: $? = 0 configure:15481: result: yes configure:15503: checking if LD -Wl,--version-script works configure:15527: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wl,--version-script=conftest.map conftest.c -lpcre -lz >&5 configure:15527: $? = 0 configure:15536: result: yes configure:15546: checking for gnu make >= 3.81 configure:15558: result: yes configure:15569: checking for whether i686-uhu-linux-gcc -std=gnu99 supports -MD -MF x.dep -MP configure:15586: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -MD -MF x.dep -MP conftest.c >&5 configure:15586: $? = 0 configure:15600: result: yes configure:15608: checking which build rules to use configure:15619: result: libtool configure:15630: checking for whether i686-uhu-linux-gcc -std=gnu99 supports -Wall configure:15645: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall conftest.c >&5 configure:15645: $? = 0 configure:15653: result: yes configure:15663: checking for whether i686-uhu-linux-g++ supports -Wold-style-cast configure:15678: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:15678: $? = 0 configure:15686: result: yes configure:15734: checking for whether to use -Werror configure:15752: result: no configure:15793: checking for xml to xhtml docbook stylesheets configure:15800: result: no configure:15805: checking for xml to fo docbook stylesheets configure:15812: result: no configure:15826: checking for docbook 4.x xml DTD configure:15832: result: no configure:15838: checking for fop configure:15868: result: no configure:15875: checking for xsltproc configure:15905: result: no configure:15912: checking for xmllint configure:15942: result: no configure:16223: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by qpdf config.status 5.1.2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on hp10 config.status:1127: creating autoconf.mk config.status:1127: creating manual/html.xsl config.status:1127: creating manual/print.xsl config.status:1127: creating libqpdf.pc config.status:1127: creating libqpdf/qpdf/qpdf-config.h config.status:1311: executing libtool commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-uhu-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_c_uint16_t=yes ac_cv_c_uint32_t=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-O2 -march=i686 -mtune=generic ' ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=i686-uhu-linux ac_cv_env_host_alias_set=set ac_cv_env_host_alias_value=i686-uhu-linux ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_file__dev_urandom=yes ac_cv_func_fseeko64=yes ac_cv_func_random=yes ac_cv_header_dlfcn_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_pcre_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_unistd_h=yes ac_cv_header_zlib_h=yes ac_cv_host=i686-uhu-linux-gnu ac_cv_objext=o ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_FGREP='/bin/grep -F' ac_cv_path_GREP=/bin/grep ac_cv_path_SED=/bin/sed ac_cv_prog_AR=i686-uhu-linux-ar ac_cv_prog_AWK=gawk ac_cv_prog_CC=i686-uhu-linux-gcc ac_cv_prog_CPP='i686-uhu-linux-gcc -std=gnu99 -E' ac_cv_prog_CXX=i686-uhu-linux-g++ ac_cv_prog_CXXCPP='i686-uhu-linux-g++ -E' ac_cv_prog_ac_ct_OBJDUMP=objdump ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes ac_cv_search_deflate=-lz ac_cv_search_pcre_compile=-lpcre ac_cv_sys_file_offset_bits=64 ac_cv_sys_largefile_CC=no ac_cv_sys_largefile_source=no lt_cv_ar_at_file=@ lt_cv_archive_cmds_need_lc=no lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_nm_interface='BSD nm' lt_cv_objdir=.libs lt_cv_path_LD=/usr/bin/ld lt_cv_path_LDCXX=/usr/bin/ld lt_cv_path_NM='/usr/bin/nm -B' lt_cv_path_mainfest_tool=no lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes lt_cv_prog_compiler_pic='-fPIC -DPIC' lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC' lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_pic_works_CXX=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=yes lt_cv_prog_compiler_static_works_CXX=yes lt_cv_prog_gnu_ld=yes lt_cv_prog_gnu_ldcxx=yes lt_cv_sharedlib_from_linklib_cmd='printf %s\n' lt_cv_shlibpath_overrides_runpath=no lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' lt_cv_sys_max_cmd_len=1572864 lt_cv_to_host_file_cmd=func_convert_file_noop lt_cv_to_tool_file_cmd=func_convert_file_noop ## ----------------- ## ## Output variables. ## ## ----------------- ## AR='i686-uhu-linux-ar' AS='as' AWK='gawk' BUILDRULES='libtool' BUILD_HTML='0' BUILD_PDF='0' CC='i686-uhu-linux-gcc -std=gnu99' CFLAGS='-O2 -march=i686 -mtune=generic ' CPP='i686-uhu-linux-gcc -std=gnu99 -E' CPPFLAGS='' CXX='i686-uhu-linux-g++' CXXCPP='i686-uhu-linux-g++ -E' CXXFLAGS='-g -O2' CXXWFLAGS='-Wold-style-cast' DEFS='-DHAVE_CONFIG_H' DLLTOOL='false' DOCBOOKX_DTD='/usr/share/xml/docbook/schema/dtd/4/docbookx.dtd' DOCBOOK_FO='' DOCBOOK_XHTML='' DSYMUTIL='' DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' FGREP='/bin/grep -F' FOP='' GENDEPS='1' GREP='/bin/grep' HAVE_LD_VERSION_SCRIPT='1' LD='/usr/bin/ld' LDFLAGS='' LIBOBJS='' LIBS='-lpcre -lz ' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIPO='' LN_S='ln -s' LTLIBOBJS='' MANIFEST_TOOL=':' NM='/usr/bin/nm -B' NMEDIT='' OBJDUMP='objdump' OBJEXT='o' OTOOL64='' OTOOL='' PACKAGE_BUGREPORT='' PACKAGE_NAME='qpdf' PACKAGE_STRING='qpdf 5.1.2' PACKAGE_TARNAME='qpdf' PACKAGE_URL='' PACKAGE_VERSION='5.1.2' PATH_SEPARATOR=':' QPDF_LARGE_FILE_TEST_PATH='' QPDF_SKIP_TEST_COMPARE_IMAGES='1' RANDOM_DEVICE='/dev/urandom' RANLIB='ranlib' SED='/bin/sed' SHELL='/bin/sh' SHOW_FAILED_TEST_OUTPUT='0' STRIP='strip' VALIDATE_DOC='0' WFLAGS='-Wall' WINDOWS_WORDSIZE='none' XMLLINT='' XSLTPROC='' ac_ct_AR='' ac_ct_CC='' ac_ct_CXX='' ac_ct_DUMPBIN='' bindir='${exec_prefix}/bin' build='i686-uhu-linux-gnu' build_alias='i686-uhu-linux' build_cpu='i686' build_os='linux-gnu' build_vendor='uhu' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host='i686-uhu-linux-gnu' host_alias='i686-uhu-linux' host_cpu='i686' host_os='linux-gnu' host_vendor='uhu' htmldir='${docdir}' includedir='${prefix}/include' infodir='/usr/share/info' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='/var' mandir='/usr/share/man' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "qpdf" #define PACKAGE_TARNAME "qpdf" #define PACKAGE_VERSION "5.1.2" #define PACKAGE_STRING "qpdf 5.1.2" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define HAVE_DLFCN_H 1 #define LT_OBJDIR ".libs/" #define HAVE_RANDOM_DEVICE 1 #define RANDOM_DEVICE "/dev/urandom" #define _FILE_OFFSET_BITS 64 #define HAVE_FSEEKO 1 #define HAVE_FSEEKO64 1 #define HAVE_RANDOM 1 configure: exit 0