This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by hungrycat configure 0.3.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 = 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:1790: checking for i686-uhu-linux-gcc configure:1806: found /usr/bin/i686-uhu-linux-gcc configure:1817: result: i686-uhu-linux-gcc configure:2086: checking for C compiler version configure:2095: 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:2106: $? = 0 configure:2095: 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:2106: $? = 0 configure:2095: 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:2106: $? = 1 configure:2095: 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:2106: $? = 1 configure:2126: checking whether the C compiler works configure:2148: i686-uhu-linux-gcc -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2152: $? = 0 configure:2200: result: yes configure:2203: checking for C compiler default output file name configure:2205: result: a.out configure:2211: checking for suffix of executables configure:2218: i686-uhu-linux-gcc -o conftest -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2222: $? = 0 configure:2244: result: configure:2266: checking whether we are cross compiling configure:2274: i686-uhu-linux-gcc -o conftest -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2278: $? = 0 configure:2285: ./conftest configure:2289: $? = 0 configure:2304: result: no configure:2309: checking for suffix of object files configure:2331: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2335: $? = 0 configure:2356: result: o configure:2360: checking whether we are using the GNU C compiler configure:2379: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2379: $? = 0 configure:2388: result: yes configure:2397: checking whether i686-uhu-linux-gcc accepts -g configure:2417: i686-uhu-linux-gcc -c -g conftest.c >&5 configure:2417: $? = 0 configure:2458: result: yes configure:2475: checking for i686-uhu-linux-gcc option to accept ISO C89 configure:2538: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2538: $? = 0 configure:2551: result: none needed configure:2571: checking for i686-uhu-linux-gcc option to accept ISO C99 configure:2720: 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:2720: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "hungrycat" | #define PACKAGE_TARNAME "hungrycat" | #define PACKAGE_VERSION "0.3.2" | #define PACKAGE_STRING "hungrycat 0.3.2" | #define PACKAGE_BUGREPORT "jwilk@jwilk.net" | #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:2720: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2720: $? = 0 configure:2740: result: -std=gnu99 configure:2752: : CFLAGS already contains configure:2755: $? = 0 configure:2777: checking CFLAGS for maximum warnings configure:2797: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -warn all -warn all conftest.c >&5 i686-uhu-linux-gcc: error: all: No such file or directory i686-uhu-linux-gcc: error: all: No such file or directory i686-uhu-linux-gcc: error: unrecognized command line option '-warn' i686-uhu-linux-gcc: error: unrecognized command line option '-warn' configure:2797: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "hungrycat" | #define PACKAGE_TARNAME "hungrycat" | #define PACKAGE_VERSION "0.3.2" | #define PACKAGE_STRING "hungrycat 0.3.2" | #define PACKAGE_BUGREPORT "jwilk@jwilk.net" | #define PACKAGE_URL "" | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:2797: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -pedantic -Wall conftest.c >&5 configure:2797: $? = 0 configure:2805: result: -Wall configure:2821: : CFLAGS="$CFLAGS $ac_cv_cflags_warn_all" configure:2824: $? = 0 configure:2847: checking how to run the C preprocessor configure:2878: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:2878: $? = 0 configure:2892: 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:2892: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "hungrycat" | #define PACKAGE_TARNAME "hungrycat" | #define PACKAGE_VERSION "0.3.2" | #define PACKAGE_STRING "hungrycat 0.3.2" | #define PACKAGE_BUGREPORT "jwilk@jwilk.net" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include configure:2917: result: i686-uhu-linux-gcc -std=gnu99 -E configure:2937: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:2937: $? = 0 configure:2951: 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:2951: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "hungrycat" | #define PACKAGE_TARNAME "hungrycat" | #define PACKAGE_VERSION "0.3.2" | #define PACKAGE_STRING "hungrycat 0.3.2" | #define PACKAGE_BUGREPORT "jwilk@jwilk.net" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include configure:2980: checking for FALLOC_FL_PUNCH_HOLE configure:2993: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:2993: $? = 0 configure:2995: result: yes configure:3023: checking for special C compiler options needed for large files configure:3068: result: no configure:3074: checking for _FILE_OFFSET_BITS value needed for large files configure:3099: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall conftest.c >&5 conftest.c:17:3: warning: left shift count >= width of type [enabled by default] int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 ^ conftest.c:17:3: warning: left shift count >= width of type [enabled by default] conftest.c:18:10: warning: left shift count >= width of type [enabled by default] && LARGE_OFF_T % 2147483647 == 1) ^ conftest.c:18:10: warning: left shift count >= width of type [enabled by default] conftest.c:17:7: error: variably modified 'off_t_is_large' at file scope int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 ^ configure:3099: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "hungrycat" | #define PACKAGE_TARNAME "hungrycat" | #define PACKAGE_VERSION "0.3.2" | #define PACKAGE_STRING "hungrycat 0.3.2" | #define PACKAGE_BUGREPORT "jwilk@jwilk.net" | #define PACKAGE_URL "" | #define HAVE_FALLOC_FL_PUNCH_HOLE 1 | #define _GNU_SOURCE 1 | /* 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 << 62) - 1 + ((off_t) 1 << 62)) | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | && LARGE_OFF_T % 2147483647 == 1) | ? 1 : -1]; | int | main () | { | | ; | return 0; | } configure:3123: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall conftest.c >&5 configure:3123: $? = 0 configure:3131: result: 64 configure:3217: checking for BUFSIZ configure:3227: result: 8192 configure:3238: checking for i686-uhu-linux-rst2man.py configure:3268: result: no configure:3238: checking for i686-uhu-linux-rst2man configure:3268: result: no configure:3282: checking for rst2man.py configure:3298: found /usr/bin/rst2man.py configure:3309: result: rst2man.py configure:3450: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by hungrycat config.status 0.3.2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on hp12 config.status:792: creating Makefile config.status:792: creating doc/manpage.rst config.status:792: creating config.h configure:4605: WARNING: unrecognized options: --enable-shared, --disable-static ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_c_compiler_gnu=yes ac_cv_cflags_warn_all=-Wall 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_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_objext=o ac_cv_prog_CC=i686-uhu-linux-gcc ac_cv_prog_CPP='i686-uhu-linux-gcc -std=gnu99 -E' ac_cv_prog_ac_ct_RST2MAN=rst2man.py ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_sys_file_offset_bits=64 ac_cv_sys_largefile_CC=no ## ----------------- ## ## Output variables. ## ## ----------------- ## BUFSIZ='8192' CC='i686-uhu-linux-gcc -std=gnu99' CFLAGS='-O2 -march=i686 -mtune=generic -Wall' CPP='i686-uhu-linux-gcc -std=gnu99 -E' CPPFLAGS='' DEFS='-DHAVE_CONFIG_H' ECHO_C='' ECHO_N='-n' ECHO_T='' EXEEXT='' LDFLAGS='' LIBOBJS='' LIBS='' LTLIBOBJS='' OBJEXT='o' PACKAGE_BUGREPORT='jwilk@jwilk.net' PACKAGE_NAME='hungrycat' PACKAGE_STRING='hungrycat 0.3.2' PACKAGE_TARNAME='hungrycat' PACKAGE_URL='' PACKAGE_VERSION='0.3.2' PATH_SEPARATOR=':' RST2MAN='rst2man.py' SHELL='/bin/sh' ac_ct_CC='' ac_ct_RST2MAN='rst2man.py' bindir='${exec_prefix}/bin' build_alias='i686-uhu-linux' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host_alias='i686-uhu-linux' 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 "hungrycat" #define PACKAGE_TARNAME "hungrycat" #define PACKAGE_VERSION "0.3.2" #define PACKAGE_STRING "hungrycat 0.3.2" #define PACKAGE_BUGREPORT "jwilk@jwilk.net" #define PACKAGE_URL "" #define HAVE_FALLOC_FL_PUNCH_HOLE 1 #define _GNU_SOURCE 1 #define _FILE_OFFSET_BITS 64 configure: exit 0