This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by lcms2 configure 2.1, which was generated by GNU Autoconf 2.65. Invocation command line was $ ./configure --prefix=/var/uhubuild/work/compile/build/ext/dist --without-jpeg --without-tiff --without-zlib ## --------- ## ## Platform. ## ## --------- ## hostname = hp12 uname -m = x86_64 uname -r = 3.13.6-1.x86_64 uname -s = Linux uname -v = #1 SMP Wed Mar 12 08:53:42 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:2377: checking build system type configure:2391: result: x86_64-unknown-linux-gnu configure:2411: checking host system type configure:2424: result: x86_64-unknown-linux-gnu configure:2444: checking target system type configure:2457: result: x86_64-unknown-linux-gnu configure:2500: checking for a BSD-compatible install configure:2568: result: /bin/install -c configure:2579: checking whether build environment is sane configure:2616: result: yes configure:2678: checking for gawk configure:2694: found /bin/gawk configure:2705: result: gawk configure:2716: checking whether make sets $(MAKE) configure:2738: result: yes configure:2951: checking for style of include used by make configure:2979: result: GNU configure:3052: checking for gcc configure:3068: found /usr/lib/ccache/gcc configure:3079: result: gcc configure:3308: checking for C compiler version configure:3317: gcc --version >&5 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:3328: $? = 0 configure:3317: gcc -v >&5 Using built-in specs. COLLECT_GCC=/usr/bin/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:3328: $? = 0 configure:3317: gcc -V >&5 gcc: error: unrecognized command line option '-V' gcc: fatal error: no input files compilation terminated. configure:3328: $? = 1 configure:3317: gcc -qversion >&5 gcc: error: unrecognized command line option '-qversion' gcc: fatal error: no input files compilation terminated. configure:3328: $? = 1 configure:3348: checking whether the C compiler works configure:3370: gcc conftest.c >&5 configure:3374: $? = 0 configure:3423: result: yes configure:3426: checking for C compiler default output file name configure:3428: result: a.out configure:3434: checking for suffix of executables configure:3441: gcc -o conftest conftest.c >&5 configure:3445: $? = 0 configure:3467: result: configure:3489: checking whether we are cross compiling configure:3497: gcc -o conftest conftest.c >&5 configure:3501: $? = 0 configure:3508: ./conftest configure:3512: $? = 0 configure:3527: result: no configure:3532: checking for suffix of object files configure:3554: gcc -c conftest.c >&5 configure:3558: $? = 0 configure:3579: result: o configure:3583: checking whether we are using the GNU C compiler configure:3602: gcc -c conftest.c >&5 configure:3602: $? = 0 configure:3611: result: yes configure:3620: checking whether gcc accepts -g configure:3640: gcc -c -g conftest.c >&5 configure:3640: $? = 0 configure:3681: result: yes configure:3698: checking for gcc option to accept ISO C89 configure:3762: gcc -c -g -O2 conftest.c >&5 configure:3762: $? = 0 configure:3775: result: none needed configure:3797: checking dependency style of gcc configure:3887: result: gcc3 configure:3908: checking for gcc option to accept ISO C99 configure:4057: gcc -c -g -O2 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:4057: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "lcms2" | #define PACKAGE_TARNAME "lcms2" | #define PACKAGE_VERSION "2.1" | #define PACKAGE_STRING "lcms2 2.1" | #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:4057: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4057: $? = 0 configure:4077: result: -std=gnu99 configure:4179: checking for gcc -std=gnu99 option to accept ISO Standard C configure:4193: result: -std=gnu99 configure:4202: checking how to run the C preprocessor configure:4233: gcc -std=gnu99 -E conftest.c configure:4233: $? = 0 configure:4247: gcc -std=gnu99 -E conftest.c conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:4247: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "lcms2" | #define PACKAGE_TARNAME "lcms2" | #define PACKAGE_VERSION "2.1" | #define PACKAGE_STRING "lcms2 2.1" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include configure:4272: result: gcc -std=gnu99 -E configure:4292: gcc -std=gnu99 -E conftest.c configure:4292: $? = 0 configure:4306: gcc -std=gnu99 -E conftest.c conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:4306: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "lcms2" | #define PACKAGE_TARNAME "lcms2" | #define PACKAGE_VERSION "2.1" | #define PACKAGE_STRING "lcms2 2.1" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include configure:4392: checking for g++ configure:4408: found /usr/lib/ccache/g++ configure:4419: result: g++ configure:4446: checking for C++ compiler version configure:4455: g++ --version >&5 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:4466: $? = 0 configure:4455: g++ -v >&5 Using built-in specs. COLLECT_GCC=/usr/bin/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:4466: $? = 0 configure:4455: g++ -V >&5 g++: error: unrecognized command line option '-V' g++: fatal error: no input files compilation terminated. configure:4466: $? = 1 configure:4455: g++ -qversion >&5 g++: error: unrecognized command line option '-qversion' g++: fatal error: no input files compilation terminated. configure:4466: $? = 1 configure:4470: checking whether we are using the GNU C++ compiler configure:4489: g++ -c conftest.cpp >&5 configure:4489: $? = 0 configure:4498: result: yes configure:4507: checking whether g++ accepts -g configure:4527: g++ -c -g conftest.cpp >&5 configure:4527: $? = 0 configure:4568: result: yes configure:4593: checking dependency style of g++ configure:4683: result: gcc3 configure:5126: checking how to print strings configure:5153: result: printf configure:5174: checking for a sed that does not truncate output configure:5238: result: /bin/sed configure:5256: checking for grep that handles long lines and -e configure:5314: result: /bin/grep configure:5319: checking for egrep configure:5381: result: /bin/grep -E configure:5386: checking for fgrep configure:5448: result: /bin/grep -F configure:5483: checking for ld used by gcc -std=gnu99 configure:5550: result: /usr/bin/ld configure:5557: checking if the linker (/usr/bin/ld) is GNU ld configure:5572: result: yes configure:5584: checking for BSD- or MS-compatible name lister (nm) configure:5633: result: /usr/bin/nm -B configure:5763: checking the name lister (/usr/bin/nm -B) interface configure:5770: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5773: /usr/bin/nm -B "conftest.o" configure:5776: output 00000000 B some_variable configure:5783: result: BSD nm configure:5786: checking whether ln -s works configure:5790: result: yes configure:5798: checking the maximum length of command line arguments configure:5923: result: 1572864 configure:5940: checking whether the shell understands some XSI constructs configure:5950: result: yes configure:5954: checking whether the shell understands "+=" configure:5960: result: yes configure:5995: checking how to convert x86_64-unknown-linux-gnu paths to x86_64-unknown-linux-gnu format configure:6035: result: func_noop_path_convert configure:6042: checking for /usr/bin/ld option to reload object files configure:6049: result: -r configure:6118: checking for objdump configure:6145: result: objdump configure:6174: checking how to recognize dependent libraries configure:6375: result: pass_all configure:6435: checking for dlltool configure:6462: result: dlltool configure:6492: checking how to associate runtime and link libraries configure:6519: result: printf %s\n configure:6573: checking for ar configure:6589: found /usr/bin/ar configure:6600: result: ar configure:6678: checking for strip configure:6694: found /usr/bin/strip configure:6705: result: strip configure:6777: checking for ranlib configure:6793: found /usr/bin/ranlib configure:6804: result: ranlib configure:6906: checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 object configure:7024: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7027: $? = 0 configure:7031: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm configure:7034: $? = 0 configure:7088: gcc -std=gnu99 -o conftest -g -O2 conftest.c conftstm.o >&5 configure:7091: $? = 0 configure:7129: result: ok configure:7225: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7228: $? = 0 configure:7964: checking for ANSI C header files configure:7984: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7984: $? = 0 configure:8057: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:8057: $? = 0 configure:8057: ./conftest configure:8057: $? = 0 configure:8068: result: yes configure:8081: checking for sys/types.h configure:8081: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8081: $? = 0 configure:8081: result: yes configure:8081: checking for sys/stat.h configure:8081: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8081: $? = 0 configure:8081: result: yes configure:8081: checking for stdlib.h configure:8081: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8081: $? = 0 configure:8081: result: yes configure:8081: checking for string.h configure:8081: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8081: $? = 0 configure:8081: result: yes configure:8081: checking for memory.h configure:8081: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8081: $? = 0 configure:8081: result: yes configure:8081: checking for strings.h configure:8081: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8081: $? = 0 configure:8081: result: yes configure:8081: checking for inttypes.h configure:8081: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8081: $? = 0 configure:8081: result: yes configure:8081: checking for stdint.h configure:8081: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8081: $? = 0 configure:8081: result: yes configure:8081: checking for unistd.h configure:8081: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8081: $? = 0 configure:8081: result: yes configure:8096: checking for dlfcn.h configure:8096: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8096: $? = 0 configure:8096: result: yes configure:8222: checking for objdir configure:8237: result: .libs configure:8504: checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions configure:8522: gcc -std=gnu99 -c -g -O2 -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] cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default] configure:8526: $? = 0 configure:8539: result: no configure:8559: checking for gcc -std=gnu99 option to produce PIC configure:8844: result: -fPIC -DPIC configure:8856: checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works configure:8874: gcc -std=gnu99 -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 configure:8878: $? = 0 configure:8891: result: yes configure:8915: checking if gcc -std=gnu99 static flag -static works configure:8943: result: yes configure:8958: checking if gcc -std=gnu99 supports -c -o file.o configure:8979: gcc -std=gnu99 -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:8983: $? = 0 configure:9005: result: yes configure:9013: checking if gcc -std=gnu99 supports -c -o file.o configure:9060: result: yes configure:9093: checking whether the gcc -std=gnu99 linker (/usr/bin/ld -m elf_i386) supports shared libraries configure:10169: result: yes configure:10206: checking whether -lc should be explicitly linked in configure:10214: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:10217: $? = 0 configure:10232: gcc -std=gnu99 -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 configure:10235: $? = 0 configure:10249: result: no configure:10414: checking dynamic linker characteristics configure:10869: gcc -std=gnu99 -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 configure:10869: $? = 0 configure:11091: result: GNU/Linux ld.so configure:11198: checking how to hardcode library paths into programs configure:11223: result: immediate configure:11763: checking whether stripping libraries is possible configure:11768: result: yes configure:11803: checking if libtool supports shared libraries configure:11805: result: yes configure:11808: checking whether to build shared libraries configure:11829: result: yes configure:11832: checking whether to build static libraries configure:11836: result: yes configure:11859: checking how to run the C++ preprocessor configure:11886: g++ -E conftest.cpp configure:11886: $? = 0 configure:11900: g++ -E conftest.cpp conftest.cpp:21:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:11900: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "lcms2" | #define PACKAGE_TARNAME "lcms2" | #define PACKAGE_VERSION "2.1" | #define PACKAGE_STRING "lcms2 2.1" | #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:11925: result: g++ -E configure:11945: g++ -E conftest.cpp configure:11945: $? = 0 configure:11959: g++ -E conftest.cpp conftest.cpp:21:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:11959: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "lcms2" | #define PACKAGE_TARNAME "lcms2" | #define PACKAGE_VERSION "2.1" | #define PACKAGE_STRING "lcms2 2.1" | #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:12127: checking for ld used by g++ configure:12194: result: /usr/bin/ld -m elf_i386 configure:12201: checking if the linker (/usr/bin/ld -m elf_i386) is GNU ld configure:12216: result: yes configure:12271: checking whether the g++ linker (/usr/bin/ld -m elf_i386) supports shared libraries configure:13203: result: yes configure:13231: g++ -c -g -O2 conftest.cpp >&5 configure:13234: $? = 0 configure:13416: checking for g++ option to produce PIC configure:13738: result: -fPIC -DPIC configure:13747: checking if g++ PIC flag -fPIC -DPIC works configure:13765: g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5 configure:13769: $? = 0 configure:13782: result: yes configure:13803: checking if g++ static flag -static works configure:13831: result: yes configure:13843: checking if g++ supports -c -o file.o configure:13864: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5 configure:13868: $? = 0 configure:13890: result: yes configure:13895: checking if g++ supports -c -o file.o configure:13942: result: yes configure:13972: checking whether the g++ linker (/usr/bin/ld -m elf_i386) supports shared libraries configure:14001: result: yes configure:14144: checking dynamic linker characteristics configure:14755: result: GNU/Linux ld.so configure:14808: checking how to hardcode library paths into programs configure:14833: result: immediate configure:14896: checking whether to enable maintainer-specific portions of Makefiles configure:14905: result: no configure:14924: checking for inline configure:14940: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:14940: $? = 0 configure:14948: result: inline configure:14970: checking whether byte ordering is bigendian configure:14985: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:22:9: error: unknown type name 'not' not a universal capable compiler ^ conftest.c:22:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' not a universal capable compiler ^ conftest.c:22:15: error: unknown type name 'universal' configure:14985: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "lcms2" | #define PACKAGE_TARNAME "lcms2" | #define PACKAGE_VERSION "2.1" | #define PACKAGE_STRING "lcms2 2.1" | #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. */ | #ifndef __APPLE_CC__ | not a universal capable compiler | #endif | typedef int dummy; | configure:15030: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:15030: $? = 0 configure:15048: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:28:4: error: unknown type name 'not' not big endian ^ conftest.c:28:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' not big endian ^ configure:15048: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "lcms2" | #define PACKAGE_TARNAME "lcms2" | #define PACKAGE_VERSION "2.1" | #define PACKAGE_STRING "lcms2 2.1" | #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 | #include | | int | main () | { | #if BYTE_ORDER != BIG_ENDIAN | not big endian | #endif | | ; | return 0; | } configure:15176: result: no configure:15199: checking for sqrt in -lm configure:15224: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lm >&5 conftest.c:28:6: warning: conflicting types for built-in function 'sqrt' [enabled by default] char sqrt (); ^ configure:15224: $? = 0 configure:15233: result: yes configure:15418: checking for ZLIB support configure:15420: result: configure:15424: checking zconf.h usability configure:15424: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:15424: $? = 0 configure:15424: result: yes configure:15424: checking zconf.h presence configure:15424: gcc -std=gnu99 -E conftest.c configure:15424: $? = 0 configure:15424: result: yes configure:15424: checking for zconf.h configure:15424: result: yes configure:15432: checking zlib.h usability configure:15432: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:15432: $? = 0 configure:15432: result: yes configure:15432: checking zlib.h presence configure:15432: gcc -std=gnu99 -E conftest.c configure:15432: $? = 0 configure:15432: result: yes configure:15432: checking for zlib.h configure:15432: result: yes configure:15440: checking for compress in -lz configure:15465: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lz -lm >&5 configure:15465: $? = 0 configure:15474: result: yes configure:15482: checking for uncompress in -lz configure:15507: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lz -lm >&5 configure:15507: $? = 0 configure:15516: result: yes configure:15524: checking for deflate in -lz configure:15549: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lz -lm >&5 configure:15549: $? = 0 configure:15558: result: yes configure:15566: checking for inflate in -lz configure:15591: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lz -lm >&5 configure:15591: $? = 0 configure:15600: result: yes configure:15608: checking for gzseek in -lz configure:15633: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lz -lm >&5 configure:15633: $? = 0 configure:15642: result: yes configure:15650: checking for gztell in -lz configure:15675: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lz -lm >&5 configure:15675: $? = 0 configure:15684: result: yes configure:15692: checking if ZLIB package is complete configure:15707: result: yes configure:16138: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by lcms2 config.status 2.1, which was generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on hp12 config.status:1087: creating Makefile config.status:1087: creating lcms2.pc config.status:1087: creating include/Makefile config.status:1087: creating src/Makefile config.status:1087: creating utils/tificc/Makefile config.status:1087: creating utils/transicc/Makefile config.status:1087: creating utils/linkicc/Makefile config.status:1087: creating utils/jpgicc/Makefile config.status:1087: creating utils/psicc/Makefile config.status:1087: creating testbed/Makefile config.status:1244: executing depfiles commands config.status:1244: executing libtool commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=x86_64-unknown-linux-gnu ac_cv_c_bigendian=no ac_cv_c_compiler_gnu=yes ac_cv_c_inline=inline 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= ac_cv_env_CFLAGS_value= 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= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_header_dlfcn_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_memory_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_zconf_h=yes ac_cv_header_zlib_h=yes ac_cv_host=x86_64-unknown-linux-gnu ac_cv_lib_m_sqrt=yes ac_cv_lib_z_compress=yes ac_cv_lib_z_deflate=yes ac_cv_lib_z_gzseek=yes ac_cv_lib_z_gztell=yes ac_cv_lib_z_inflate=yes ac_cv_lib_z_uncompress=yes 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_path_install='/bin/install -c' ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_CXXCPP='g++ -E' ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_ac_ct_DLLTOOL=dlltool 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_cc_stdc=-std=gnu99 ac_cv_prog_cxx_g=yes ac_cv_prog_make_make_set=yes ac_cv_target=x86_64-unknown-linux-gnu am_cv_CC_dependencies_compiler_type=gcc3 am_cv_CXX_dependencies_compiler_type=gcc3 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 -m elf_i386' lt_cv_path_NM='/usr/bin/nm -B' lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes 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'\''' 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_path_cmd=func_noop_path_convert ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /var/uhubuild/work/compile/build/src/apps/ociobakelut/LCMS-prefix/src/LCMS/missing --run aclocal-1.9' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /var/uhubuild/work/compile/build/src/apps/ociobakelut/LCMS-prefix/src/LCMS/missing --run tar' AR='ar' AS='as' AUTOCONF='${SHELL} /var/uhubuild/work/compile/build/src/apps/ociobakelut/LCMS-prefix/src/LCMS/missing --run autoconf' AUTOHEADER='${SHELL} /var/uhubuild/work/compile/build/src/apps/ociobakelut/LCMS-prefix/src/LCMS/missing --run autoheader' AUTOMAKE='${SHELL} /var/uhubuild/work/compile/build/src/apps/ociobakelut/LCMS-prefix/src/LCMS/missing --run automake-1.9' AWK='gawk' CC='gcc -std=gnu99' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2' CPP='gcc -std=gnu99 -E' CPPFLAGS='' CXX='g++' CXXCPP='g++ -E' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2' CYGPATH_W='echo' DEFS='-DPACKAGE_NAME=\"lcms2\" -DPACKAGE_TARNAME=\"lcms2\" -DPACKAGE_VERSION=\"2.1\" -DPACKAGE_STRING=\"lcms2\ 2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHasZLIB=1' DEPDIR='.deps' DLLTOOL='dlltool' DSYMUTIL='' DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' FGREP='/bin/grep -F' GREP='/bin/grep' HasJPEG_FALSE='' HasJPEG_TRUE='#' HasTIFF_FALSE='' HasTIFF_TRUE='#' HasZLIB_FALSE='#' HasZLIB_TRUE='' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s' JPEGICC_DEPLIBS='-lm' LCMS_LIB_DEPLIBS='-lm' LD='/usr/bin/ld -m elf_i386' LDFLAGS='' LIBOBJS='' LIBRARY_AGE='0' LIBRARY_CURRENT='2' LIBRARY_REVISION='1' LIBS='' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIBTOOL_DEPS='./ltmain.sh' LIB_JPEG='' LIB_MATH='-lm' LIB_TIFF='' LIB_ZLIB='-lz' LIPO='' LN_S='ln -s' LTLIBOBJS='' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /var/uhubuild/work/compile/build/src/apps/ociobakelut/LCMS-prefix/src/LCMS/missing --run makeinfo' NM='/usr/bin/nm -B' NMEDIT='' OBJDUMP='objdump' OBJEXT='o' OTOOL64='' OTOOL='' PACKAGE='lcms2' PACKAGE_BUGREPORT='' PACKAGE_NAME='lcms2' PACKAGE_STRING='lcms2 2.1' PACKAGE_TARNAME='lcms2' PACKAGE_URL='' PACKAGE_VERSION='2.1' PATH_SEPARATOR=':' RANLIB='ranlib' SED='/bin/sed' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' TIFFICC_DEPLIBS='-lz -lm' VERSION='2.1' ac_ct_CC='gcc' ac_ct_CXX='g++' ac_ct_DUMPBIN='' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__fastdepCXX_FALSE='#' am__fastdepCXX_TRUE='' am__include='include' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build='x86_64-unknown-linux-gnu' build_alias='' build_cpu='x86_64' build_os='linux-gnu' build_vendor='unknown' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host='x86_64-unknown-linux-gnu' host_alias='' host_cpu='x86_64' host_os='linux-gnu' host_vendor='unknown' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' inline='' install_sh='/var/uhubuild/work/compile/build/src/apps/ociobakelut/LCMS-prefix/src/LCMS/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='mkdir -p --' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/var/uhubuild/work/compile/build/ext/dist' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target='x86_64-unknown-linux-gnu' target_alias='' target_cpu='x86_64' target_os='linux-gnu' target_vendor='unknown' to_host_path_cmd='func_noop_path_convert' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "lcms2" #define PACKAGE_TARNAME "lcms2" #define PACKAGE_VERSION "2.1" #define PACKAGE_STRING "lcms2 2.1" #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 HasZLIB 1 configure: exit 0