This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by Jelatine configure 0.9.4, which was generated by GNU Autoconf 2.64. Invocation command line was $ ./configure --target=arm-elf-eabi --prefix=/usr/arm --disable-threaded ## --------- ## ## Platform. ## ## --------- ## hostname = barra-laptop uname -m = i686 uname -r = 3.1.0 uname -s = Linux uname -v = #1 SMP Sat Dec 10 09:54:46 YEKT 2011 /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/arm/bin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin PATH: /usr/games ## ----------- ## ## Core tests. ## ## ----------- ## configure:2563: checking for a BSD-compatible install configure:2631: result: /usr/bin/install -c configure:2642: checking whether build environment is sane configure:2692: result: yes configure:2833: checking for a thread-safe mkdir -p configure:2872: result: /bin/mkdir -p configure:2885: checking for gawk configure:2901: found /usr/bin/gawk configure:2912: result: gawk configure:2923: checking whether make sets $(MAKE) configure:2945: result: yes configure:3172: checking for style of include used by make configure:3200: result: GNU configure:3270: checking for gcc configure:3286: found /usr/bin/gcc configure:3297: result: gcc configure:3526: checking for C compiler version configure:3535: gcc --version >&5 gcc (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1 Copyright (C) 2011 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:3546: $? = 0 configure:3535: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6.1/lto-wrapper Target: i686-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.1-9ubuntu3' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu Thread model: posix gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) configure:3546: $? = 0 configure:3535: gcc -V >&5 gcc: error: unrecognized option '-V' gcc: fatal error: no input files compilation terminated. configure:3546: $? = 4 configure:3535: gcc -qversion >&5 gcc: error: unrecognized option '-qversion' gcc: fatal error: no input files compilation terminated. configure:3546: $? = 4 configure:3568: checking for C compiler default output file name configure:3590: gcc conftest.c >&5 configure:3594: $? = 0 configure:3631: result: a.out configure:3647: checking whether the C compiler works configure:3656: ./a.out configure:3660: $? = 0 configure:3675: result: yes configure:3682: checking whether we are cross compiling configure:3684: result: no configure:3687: checking for suffix of executables configure:3694: gcc -o conftest conftest.c >&5 configure:3698: $? = 0 configure:3720: result: configure:3726: checking for suffix of object files configure:3748: gcc -c conftest.c >&5 configure:3752: $? = 0 configure:3773: result: o configure:3777: checking whether we are using the GNU C compiler configure:3796: gcc -c conftest.c >&5 configure:3796: $? = 0 configure:3805: result: yes configure:3814: checking whether gcc accepts -g configure:3834: gcc -c -g conftest.c >&5 configure:3834: $? = 0 configure:3875: result: yes configure:3892: checking for gcc option to accept ISO C89 configure:3956: gcc -c -g -O2 conftest.c >&5 configure:3956: $? = 0 configure:3969: result: none needed configure:3991: checking dependency style of gcc configure:4101: result: gcc3 configure:4116: checking for gcc option to accept ISO C99 configure:4265: gcc -c -g -O2 conftest.c >&5 conftest.c:63:29: error: expected ';', ',' or ')' before 'text' conftest.c: In function 'main': conftest.c:117:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' conftest.c:117:18: error: 'newvar' undeclared (first use in this function) conftest.c:117:18: note: each undeclared identifier is reported only once for each function it appears in conftest.c:127:3: error: 'for' loop initial declarations are only allowed in C99 mode conftest.c:127:3: note: use option -std=c99 or -std=gnu99 to compile your code configure:4265: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | /* 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:4265: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4265: $? = 0 configure:4285: result: -std=gnu99 configure:4307: checking how to run the C preprocessor configure:4338: gcc -std=gnu99 -E conftest.c configure:4338: $? = 0 configure:4352: gcc -std=gnu99 -E conftest.c conftest.c:13:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4352: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | /* end confdefs.h. */ | #include configure:4377: result: gcc -std=gnu99 -E configure:4397: gcc -std=gnu99 -E conftest.c configure:4397: $? = 0 configure:4411: gcc -std=gnu99 -E conftest.c conftest.c:13:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4411: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | /* end confdefs.h. */ | #include configure:4440: checking for grep that handles long lines and -e configure:4498: result: /bin/grep configure:4503: checking for egrep configure:4565: result: /bin/grep -E configure:4570: checking for ANSI C header files configure:4590: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4590: $? = 0 configure:4663: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4663: $? = 0 configure:4663: ./conftest configure:4663: $? = 0 configure:4674: result: yes configure:4687: checking for sys/types.h configure:4687: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4687: $? = 0 configure:4687: result: yes configure:4687: checking for sys/stat.h configure:4687: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4687: $? = 0 configure:4687: result: yes configure:4687: checking for stdlib.h configure:4687: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4687: $? = 0 configure:4687: result: yes configure:4687: checking for string.h configure:4687: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4687: $? = 0 configure:4687: result: yes configure:4687: checking for memory.h configure:4687: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4687: $? = 0 configure:4687: result: yes configure:4687: checking for strings.h configure:4687: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4687: $? = 0 configure:4687: result: yes configure:4687: checking for inttypes.h configure:4687: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4687: $? = 0 configure:4687: result: yes configure:4687: checking for stdint.h configure:4687: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4687: $? = 0 configure:4687: result: yes configure:4687: checking for unistd.h configure:4687: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4687: $? = 0 configure:4687: result: yes configure:4701: checking minix/config.h usability configure:4701: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:56:26: fatal error: minix/config.h: No such file or directory compilation terminated. configure:4701: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:4701: result: no configure:4701: checking minix/config.h presence configure:4701: gcc -std=gnu99 -E conftest.c conftest.c:23:26: fatal error: minix/config.h: No such file or directory compilation terminated. configure:4701: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 | /* end confdefs.h. */ | #include configure:4701: result: no configure:4701: checking for minix/config.h configure:4701: result: no configure:4722: checking whether it is safe to define __EXTENSIONS__ configure:4740: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4740: $? = 0 configure:4747: result: yes configure:4767: checking for jar configure:4783: found /usr/bin/jar configure:4794: result: jar configure:4828: checking for pkg-config configure:4846: found /usr/bin/pkg-config configure:4859: result: /usr/bin/pkg-config configure:4966: checking for zziplib >= 0.13.00 configure:4970: result: yes configure:4974: checking ZZIP_CFLAGS configure:4977: result: configure:4980: checking ZZIP_LIBS configure:4983: result: -Wl,-Bsymbolic-functions -lzzip -lz configure:5032: checking build system type configure:5046: result: i686-pc-linux-gnu configure:5066: checking host system type configure:5079: result: i686-pc-linux-gnu configure:5264: checking for the pthreads library -lpthreads configure:5297: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lpthreads -Wl,-Bsymbolic-functions -lzzip -lz >&5 /usr/bin/ld: cannot find -lpthreads collect2: ld returned 1 exit status configure:5297: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | /* end confdefs.h. */ | #include | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:5306: result: no configure:5209: checking whether pthreads work without any flags configure:5297: gcc -std=gnu99 -o conftest -g -O2 conftest.c -Wl,-Bsymbolic-functions -lzzip -lz >&5 /tmp/ccCExJtE.o: In function `main': /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/conftest.c:33: undefined reference to `pthread_join' /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/conftest.c:34: undefined reference to `__pthread_register_cancel' /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/conftest.c:35: undefined reference to `pthread_create' /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/conftest.c:35: undefined reference to `__pthread_unregister_cancel' collect2: ld returned 1 exit status configure:5297: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | /* end confdefs.h. */ | #include | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:5306: result: no configure:5214: checking whether pthreads work with -Kthread configure:5297: gcc -std=gnu99 -o conftest -g -O2 -Kthread conftest.c -Wl,-Bsymbolic-functions -lzzip -lz >&5 gcc: error: unrecognized option '-Kthread' configure:5297: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | /* end confdefs.h. */ | #include | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:5306: result: no configure:5214: checking whether pthreads work with -kthread configure:5297: gcc -std=gnu99 -o conftest -g -O2 -kthread conftest.c -Wl,-Bsymbolic-functions -lzzip -lz >&5 gcc: error: unrecognized option '-kthread' configure:5297: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | /* end confdefs.h. */ | #include | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:5306: result: no configure:5264: checking for the pthreads library -llthread configure:5297: gcc -std=gnu99 -o conftest -g -O2 conftest.c -llthread -Wl,-Bsymbolic-functions -lzzip -lz >&5 /usr/bin/ld: cannot find -llthread collect2: ld returned 1 exit status configure:5297: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | /* end confdefs.h. */ | #include | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:5306: result: no configure:5214: checking whether pthreads work with -pthread configure:5297: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -Wl,-Bsymbolic-functions -lzzip -lz >&5 configure:5297: $? = 0 configure:5306: result: yes configure:5325: checking for joinable pthread attribute configure:5340: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -Wl,-Bsymbolic-functions -lzzip -lz >&5 configure:5340: $? = 0 configure:5346: result: PTHREAD_CREATE_JOINABLE configure:5356: checking if more special flags are required for pthreads configure:5363: result: no configure:5453: checking for GNU Pth configure:5711: gcc -std=gnu99 -E conftest.c conftest.c:30:25: fatal error: pth.h: No such file or directory compilation terminated. configure:5711: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | /* end confdefs.h. */ | #include | #include | configure:5753: gcc -std=gnu99 -o conftest -g -O2 conftest.c -Wl,-Bsymbolic-functions -lzzip -lz >&5 conftest.c:30:25: fatal error: pth.h: No such file or directory compilation terminated. configure:5753: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | int main(int argc, char *argv) | { | FILE *fp; | if (!(fp = fopen("conftestval", "w"))) | exit(1); | fprintf(fp, "hmm"); | fclose(fp); | pth_init(); | pth_kill(); | if (!(fp = fopen("conftestval", "w"))) | exit(1); | fprintf(fp, "yes"); | fclose(fp); | exit(0); | } | | ; | return 0; | } configure:5792: gcc -std=gnu99 -o conftest -g -O2 conftest.c -Wl,-Bsymbolic-functions -lzzip -lz >&5 conftest.c:30:25: fatal error: pth.h: No such file or directory compilation terminated. configure:5792: $? = 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | /* end confdefs.h. */ | #include | #include | int main(int argc, char *argv) | { | FILE *fp; | if (!(fp = fopen("conftestval", "w"))) | exit(1); | fprintf(fp, "hmm"); | fclose(fp); | pth_init(); | pth_kill(); | if (!(fp = fopen("conftestval", "w"))) | exit(1); | fprintf(fp, "yes"); | fclose(fp); | exit(0); | } | configure:5865: result: no configure:6038: checking for cos in -lm configure:6063: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lm -Wl,-Bsymbolic-functions -lzzip -lz >&5 conftest.c:38:6: warning: conflicting types for built-in function 'cos' [enabled by default] configure:6063: $? = 0 configure:6072: result: yes configure:6089: checking for library containing iconv configure:6120: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:6120: $? = 0 configure:6137: result: none required configure:6145: checking for library containing clock_gettime configure:6176: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 /tmp/ccF4Pb3w.o: In function `main': /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/conftest.c:42: undefined reference to `clock_gettime' collect2: ld returned 1 exit status configure:6176: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | /* 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 clock_gettime (); | int | main () | { | return clock_gettime (); | ; | return 0; | } configure:6176: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:6176: $? = 0 configure:6193: result: -lrt configure:6207: checking for ANSI C header files configure:6311: result: yes configure:6326: checking for stdbool.h that conforms to C99 configure:6411: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6411: $? = 0 configure:6418: result: yes configure:6420: checking for _Bool configure:6420: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6420: $? = 0 configure:6420: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:68:20: error: expected expression before ')' token configure:6420: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((_Bool))) | return 0; | ; | return 0; | } configure:6420: result: yes configure:6436: checking whether time.h and sys/time.h may both be included configure:6456: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6456: $? = 0 configure:6463: result: yes configure:6475: checking arpa/inet.h usability configure:6475: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking arpa/inet.h presence configure:6475: gcc -std=gnu99 -E conftest.c configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking for arpa/inet.h configure:6475: result: yes configure:6475: checking dirent.h usability configure:6475: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking dirent.h presence configure:6475: gcc -std=gnu99 -E conftest.c configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking for dirent.h configure:6475: result: yes configure:6475: checking fcntl.h usability configure:6475: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking fcntl.h presence configure:6475: gcc -std=gnu99 -E conftest.c configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking for fcntl.h configure:6475: result: yes configure:6475: checking iconv.h usability configure:6475: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking iconv.h presence configure:6475: gcc -std=gnu99 -E conftest.c configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking for iconv.h configure:6475: result: yes configure:6475: checking for inttypes.h configure:6475: result: yes configure:6475: checking langinfo.h usability configure:6475: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking langinfo.h presence configure:6475: gcc -std=gnu99 -E conftest.c configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking for langinfo.h configure:6475: result: yes configure:6475: checking math.h usability configure:6475: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking math.h presence configure:6475: gcc -std=gnu99 -E conftest.c configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking for math.h configure:6475: result: yes configure:6475: checking stdarg.h usability configure:6475: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking stdarg.h presence configure:6475: gcc -std=gnu99 -E conftest.c configure:6475: $? = 0 configure:6475: result: yes configure:6475: checking for stdarg.h configure:6475: result: yes configure:6475: checking for sys/stat.h configure:6475: result: yes configure:6475: checking for sys/types.h configure:6475: result: yes configure:6475: checking for unistd.h configure:6475: result: yes configure:6490: checking sys/socket.h usability configure:6490: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6490: $? = 0 configure:6490: result: yes configure:6490: checking sys/socket.h presence configure:6490: gcc -std=gnu99 -E conftest.c configure:6490: $? = 0 configure:6490: result: yes configure:6490: checking for sys/socket.h configure:6490: result: yes configure:6490: checking netinet/in.h usability configure:6490: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6490: $? = 0 configure:6490: result: yes configure:6490: checking netinet/in.h presence configure:6490: gcc -std=gnu99 -E conftest.c configure:6490: $? = 0 configure:6490: result: yes configure:6490: checking for netinet/in.h configure:6490: result: yes configure:6490: checking netdb.h usability configure:6490: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6490: $? = 0 configure:6490: result: yes configure:6490: checking netdb.h presence configure:6490: gcc -std=gnu99 -E conftest.c configure:6490: $? = 0 configure:6490: result: yes configure:6490: checking for netdb.h configure:6490: result: yes configure:6509: checking for size_t configure:6509: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6509: $? = 0 configure:6509: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:85:21: error: expected expression before ')' token configure:6509: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((size_t))) | return 0; | ; | return 0; | } configure:6509: result: yes configure:6526: checking size of void * configure:6531: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:6531: $? = 0 configure:6531: ./conftest configure:6531: $? = 0 configure:6546: result: 4 configure:6560: checking size of long configure:6565: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:6565: $? = 0 configure:6565: ./conftest configure:6565: $? = 0 configure:6580: result: 4 configure:6594: checking size of long long configure:6599: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:6599: $? = 0 configure:6599: ./conftest configure:6599: $? = 0 configure:6614: result: 8 configure:6626: checking for int8_t configure:6626: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6626: $? = 0 configure:6626: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:88:12: error: size of array 'test_array' is negative configure:6626: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !((int8_t) ((((int8_t) 1 << (8 - 2)) - 1) * 2 + 1) | < (int8_t) ((((int8_t) 1 << (8 - 2)) - 1) * 2 + 2))]; | test_array [0] = 0 | | ; | return 0; | } configure:6626: result: yes configure:6637: checking for uint8_t configure:6637: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6637: $? = 0 configure:6637: result: yes configure:6651: checking for int16_t configure:6651: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6651: $? = 0 configure:6651: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:88:12: error: size of array 'test_array' is negative configure:6651: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !((int16_t) ((((int16_t) 1 << (16 - 2)) - 1) * 2 + 1) | < (int16_t) ((((int16_t) 1 << (16 - 2)) - 1) * 2 + 2))]; | test_array [0] = 0 | | ; | return 0; | } configure:6651: result: yes configure:6662: checking for uint16_t configure:6662: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6662: $? = 0 configure:6662: result: yes configure:6674: checking for int32_t configure:6674: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6674: $? = 0 configure:6674: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:89:53: warning: integer overflow in expression [-Woverflow] conftest.c:88:12: error: size of array 'test_array' is negative conftest.c:88:12: error: storage size of 'test_array' isn't constant configure:6674: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !((int32_t) ((((int32_t) 1 << (32 - 2)) - 1) * 2 + 1) | < (int32_t) ((((int32_t) 1 << (32 - 2)) - 1) * 2 + 2))]; | test_array [0] = 0 | | ; | return 0; | } configure:6674: result: yes configure:6685: checking for uint32_t configure:6685: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6685: $? = 0 configure:6685: result: yes configure:6699: checking for int64_t configure:6699: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6699: $? = 0 configure:6699: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:89:53: warning: integer overflow in expression [-Woverflow] conftest.c:88:12: error: size of array 'test_array' is negative conftest.c:88:12: error: storage size of 'test_array' isn't constant configure:6699: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !((int64_t) ((((int64_t) 1 << (64 - 2)) - 1) * 2 + 1) | < (int64_t) ((((int64_t) 1 << (64 - 2)) - 1) * 2 + 2))]; | test_array [0] = 0 | | ; | return 0; | } configure:6699: result: yes configure:6710: checking for uint64_t configure:6710: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6710: $? = 0 configure:6710: result: yes configure:6725: checking for intptr_t configure:6725: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6725: $? = 0 configure:6725: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:88:23: error: expected expression before ')' token configure:6725: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((intptr_t))) | return 0; | ; | return 0; | } configure:6725: result: yes configure:6760: checking for uintptr_t configure:6760: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6760: $? = 0 configure:6760: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:89:24: error: expected expression before ')' token configure:6760: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define HAVE_INTPTR_T 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((uintptr_t))) | return 0; | ; | return 0; | } configure:6760: result: yes configure:6797: checking for ptrdiff_t configure:6797: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6797: $? = 0 configure:6797: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:90:24: error: expected expression before ')' token configure:6797: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((ptrdiff_t))) | return 0; | ; | return 0; | } configure:6797: result: yes configure:6818: checking for an ANSI C-conforming const configure:6883: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6883: $? = 0 configure:6890: result: yes configure:6898: checking for inline configure:6914: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:6914: $? = 0 configure:6922: result: inline configure:6940: checking whether byte ordering is bigendian configure:6955: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c:56:9: error: unknown type name 'not' conftest.c:56:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' conftest.c:56:15: error: unknown type name 'universal' configure:6955: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_PTRDIFF_T 1 | /* end confdefs.h. */ | #ifndef __APPLE_CC__ | not a universal capable compiler | #endif | typedef int dummy; | configure:7000: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:7000: $? = 0 configure:7018: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:62:4: error: unknown type name 'not' conftest.c:62:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' configure:7018: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_PTRDIFF_T 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | #if BYTE_ORDER != BIG_ENDIAN | not big endian | #endif | | ; | return 0; | } configure:7146: result: no configure:7164: checking whether float word ordering is bigendian configure:7180: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:7180: $? = 0 configure:7198: result: no configure:7221: checking for __builtin_nan configure:7237: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7237: $? = 0 configure:7245: result: yes configure:7261: checking for __attribute__((const)) configure:7277: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7277: $? = 0 configure:7285: result: yes configure:7326: checking for __attribute__((malloc)) configure:7342: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7342: $? = 0 configure:7350: result: yes configure:7391: checking for __attribute__((noreturn)) configure:7407: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7407: $? = 0 configure:7415: result: yes configure:7456: checking for __attribute__((pure)) configure:7472: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7472: $? = 0 configure:7480: result: yes configure:7522: checking for gcc's labels-as-values extension configure:7540: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:7540: $? = 0 configure:7541: result: yes configure:7560: checking for thread local storage (TLS) class configure:7587: gcc -std=gnu99 -c -g -O2 -pthread conftest.c >&5 configure:7587: $? = 0 configure:7607: result: __thread configure:7617: checking for stdlib.h configure:7617: result: yes configure:7627: checking for GNU libc compatible malloc configure:7651: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7651: $? = 0 configure:7651: ./conftest configure:7651: $? = 0 configure:7661: result: yes configure:7682: checking for working memcmp configure:7725: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7725: $? = 0 configure:7725: ./conftest configure:7725: $? = 0 configure:7735: result: yes configure:7746: checking for vprintf configure:7746: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:86:6: warning: conflicting types for built-in function 'vprintf' [enabled by default] configure:7746: $? = 0 configure:7746: result: yes configure:7752: checking for _doprnt configure:7752: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 /tmp/ccg6jje5.o: In function `main': /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/conftest.c:98: undefined reference to `_doprnt' collect2: ld returned 1 exit status configure:7752: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_PTRDIFF_T 1 | #define HAVE___BUILTIN_NAN 1 | #define HAVE_ATTRIBUTE_CONST 1 | #define HAVE_ATTRIBUTE_MALLOC 1 | #define HAVE_ATTRIBUTE_NORETURN 1 | #define HAVE_ATTRIBUTE_PURE 1 | #define TLS __thread | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_VPRINTF 1 | /* end confdefs.h. */ | /* Define _doprnt to an innocuous variant, in case declares _doprnt. | For example, HP-UX 11i declares gettimeofday. */ | #define _doprnt innocuous__doprnt | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _doprnt (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef _doprnt | | /* 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 _doprnt (); | /* 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__doprnt || defined __stub____doprnt | choke me | #endif | | int | main () | { | return _doprnt (); | ; | return 0; | } configure:7752: result: no configure:7763: checking for vsnprintf configure:7763: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:87:6: warning: conflicting types for built-in function 'vsnprintf' [enabled by default] configure:7763: $? = 0 configure:7763: result: yes configure:7770: checking for memcpy configure:7770: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:87:6: warning: conflicting types for built-in function 'memcpy' [enabled by default] configure:7770: $? = 0 configure:7770: result: yes configure:7782: checking for memmove configure:7782: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:87:6: warning: conflicting types for built-in function 'memmove' [enabled by default] configure:7782: $? = 0 configure:7782: result: yes configure:7797: checking for gettimeofday configure:7797: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7797: $? = 0 configure:7797: result: yes configure:7797: checking for clock_gettime configure:7797: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7797: $? = 0 configure:7797: result: yes configure:7808: checking for va_copy configure:7843: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7843: $? = 0 configure:7843: ./conftest configure:7843: $? = 0 configure:7853: result: yes configure:7863: checking for __va_copy configure:7898: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7898: $? = 0 configure:7898: ./conftest configure:7898: $? = 0 configure:7908: result: yes configure:7922: checking for fmod configure:7922: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:91:6: warning: conflicting types for built-in function 'fmod' [enabled by default] configure:7922: $? = 0 configure:7922: result: yes configure:7922: checking for sin configure:7922: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:92:6: warning: conflicting types for built-in function 'sin' [enabled by default] configure:7922: $? = 0 configure:7922: result: yes configure:7922: checking for cos configure:7922: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:93:6: warning: conflicting types for built-in function 'cos' [enabled by default] configure:7922: $? = 0 configure:7922: result: yes configure:7922: checking for tan configure:7922: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:94:6: warning: conflicting types for built-in function 'tan' [enabled by default] configure:7922: $? = 0 configure:7922: result: yes configure:7922: checking for sqrt configure:7922: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:95:6: warning: conflicting types for built-in function 'sqrt' [enabled by default] configure:7922: $? = 0 configure:7922: result: yes configure:7922: checking for ceil configure:7922: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:96:6: warning: conflicting types for built-in function 'ceil' [enabled by default] configure:7922: $? = 0 configure:7922: result: yes configure:7922: checking for floor configure:7922: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 conftest.c:97:6: warning: conflicting types for built-in function 'floor' [enabled by default] configure:7922: $? = 0 configure:7922: result: yes configure:7944: checking for pthread_yield configure:7944: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 configure:7944: $? = 0 configure:7944: result: yes configure:7944: checking for pthread_yield_np configure:7944: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm >&5 /tmp/ccGGYcFk.o: In function `main': /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/conftest.c:110: undefined reference to `pthread_yield_np' collect2: ld returned 1 exit status configure:7944: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Jelatine" | #define PACKAGE_TARNAME "jelatine" | #define PACKAGE_VERSION "0.9.4" | #define PACKAGE_STRING "Jelatine 0.9.4" | #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" | #define PACKAGE_URL "" | #define PACKAGE "jelatine" | #define VERSION "0.9.4" | #define JEL_POINTER_REVERSAL 1 | #define NDEBUG 1 | #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 __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define JEL_JARFILE_SUPPORT 1 | #define JEL_THREAD_POSIX 1 | #define JEL_FINALIZER 1 | #define STDC_HEADERS 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_MATH_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETDB_H 1 | #define SIZEOF_VOID_P 4 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_PTRDIFF_T 1 | #define HAVE___BUILTIN_NAN 1 | #define HAVE_ATTRIBUTE_CONST 1 | #define HAVE_ATTRIBUTE_MALLOC 1 | #define HAVE_ATTRIBUTE_NORETURN 1 | #define HAVE_ATTRIBUTE_PURE 1 | #define TLS __thread | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_VPRINTF 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_VA_COPY 1 | #define HAVE___VA_COPY 1 | #define HAVE_FMOD 1 | #define HAVE_SIN 1 | #define HAVE_COS 1 | #define HAVE_TAN 1 | #define HAVE_SQRT 1 | #define HAVE_CEIL 1 | #define HAVE_FLOOR 1 | #define HAVE_PTHREAD_YIELD 1 | /* end confdefs.h. */ | /* Define pthread_yield_np to an innocuous variant, in case declares pthread_yield_np. | For example, HP-UX 11i declares gettimeofday. */ | #define pthread_yield_np innocuous_pthread_yield_np | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pthread_yield_np (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pthread_yield_np | | /* 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 pthread_yield_np (); | /* 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_pthread_yield_np || defined __stub___pthread_yield_np | choke me | #endif | | int | main () | { | return pthread_yield_np (); | ; | return 0; | } configure:7944: result: no configure:8146: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by Jelatine config.status 0.9.4, which was generated by GNU Autoconf 2.64. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on barra-laptop config.status:937: creating Makefile config.status:937: creating Doxyfile config.status:937: creating docs/Makefile config.status:937: creating m4/Makefile config.status:937: creating src/Makefile config.status:937: creating src/classpath/Makefile config.status:937: creating src/preverifier/Makefile config.status:937: creating src/jelatine/Makefile config.status:937: creating config.h config.status:1157: executing depfiles commands ## -------------- ## ## Configuration. ## ## -------------- ## Configuration for jelatine 0.9.4 Build preverifier: yes With floating-point support: yes With JAR support: yes With socket support: yes With threaded interpreter: no With thread model: pthread With finalization: yes Debugging: no ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-pc-linux-gnu ac_cv_c_bigendian=no ac_cv_c_compiler_gnu=yes ac_cv_c_const=yes ac_cv_c_inline=inline ac_cv_c_int16_t=yes ac_cv_c_int32_t=yes ac_cv_c_int64_t=yes ac_cv_c_int8_t=yes ac_cv_c_uint16_t=yes ac_cv_c_uint32_t=yes ac_cv_c_uint64_t=yes ac_cv_c_uint8_t=yes 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_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=set ac_cv_env_target_alias_value=arm-elf-eabi ac_cv_func__doprnt=no ac_cv_func_ceil=yes ac_cv_func_clock_gettime=yes ac_cv_func_cos=yes ac_cv_func_floor=yes ac_cv_func_fmod=yes ac_cv_func_gettimeofday=yes ac_cv_func_malloc_0_nonnull=yes ac_cv_func_memcmp_working=yes ac_cv_func_memcpy=yes ac_cv_func_memmove=yes ac_cv_func_pthread_yield=yes ac_cv_func_pthread_yield_np=no ac_cv_func_sin=yes ac_cv_func_sqrt=yes ac_cv_func_tan=yes ac_cv_func_vprintf=yes ac_cv_func_vsnprintf=yes ac_cv_header_arpa_inet_h=yes ac_cv_header_dirent_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_iconv_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_langinfo_h=yes ac_cv_header_math_h=yes ac_cv_header_memory_h=yes ac_cv_header_minix_config_h=no ac_cv_header_netdb_h=yes ac_cv_header_netinet_in_h=yes ac_cv_header_stdarg_h=yes ac_cv_header_stdbool_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_socket_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_time=yes ac_cv_header_unistd_h=yes ac_cv_host=i686-pc-linux-gnu ac_cv_lib_m_cos=yes ac_cv_objext=o ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GREP=/bin/grep ac_cv_path_PKG_CONFIG=/usr/bin/pkg-config ac_cv_path_install='/usr/bin/install -c' ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_JAR=jar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_prog_make_make_set=yes ac_cv_safe_to_define___extensions__=yes ac_cv_search_clock_gettime=-lrt ac_cv_search_iconv='none required' ac_cv_sizeof_long=4 ac_cv_sizeof_long_long=8 ac_cv_sizeof_void_p=4 ac_cv_tls=__thread ac_cv_type__Bool=yes ac_cv_type_intptr_t=yes ac_cv_type_ptrdiff_t=yes ac_cv_type_size_t=yes ac_cv_type_uintptr_t=yes acx_cv_have___builtin_nan=yes acx_cv_have___va_copy=yes acx_cv_have_attribute_const=yes acx_cv_have_attribute_malloc=yes acx_cv_have_attribute_noreturn=yes acx_cv_have_attribute_pure=yes acx_cv_have_va_copy=yes am_cv_CC_dependencies_compiler_type=gcc3 ax_cv_c_float_words_bigendian=no ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/missing --run aclocal-1.11' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/missing --run tar' AUTOCONF='${SHELL} /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/missing --run autoconf' AUTOHEADER='${SHELL} /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/missing --run autoheader' AUTOMAKE='${SHELL} /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/missing --run automake-1.11' AWK='gawk' CC='gcc -std=gnu99' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2 -pthread' COND_PREVERIFIER_FALSE='#' COND_PREVERIFIER_TRUE='' CPP='gcc -std=gnu99 -E' CPPFLAGS='' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' GREP='/bin/grep' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' JAR='jar' LDFLAGS='' LIBM='-lm' LIBOBJS='' LIBS='-lrt -Wl,-Bsymbolic-functions -lzzip -lz -lm' LTLIBOBJS='' MAKEINFO='${SHELL} /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/missing --run makeinfo' MKDIR_P='/bin/mkdir -p' OBJEXT='o' PACKAGE='jelatine' PACKAGE_BUGREPORT='gabriele.svelto@gmail.com' PACKAGE_NAME='Jelatine' PACKAGE_STRING='Jelatine 0.9.4' PACKAGE_TARNAME='jelatine' PACKAGE_URL='' PACKAGE_VERSION='0.9.4' PATH_SEPARATOR=':' PKG_CONFIG='/usr/bin/pkg-config' PTHREAD_CC='gcc -std=gnu99' PTHREAD_CFLAGS='-pthread' PTHREAD_LIBS='' PTH_CFLAGS='' PTH_CPPFLAGS='' PTH_LDFLAGS='' PTH_LIBS='' SET_MAKE='' SHELL='/bin/bash' STRIP='' VERSION='0.9.4' ZZIP_CFLAGS=' ' ZZIP_CONFIG='' ZZIP_LIBS='-Wl,-Bsymbolic-functions -lzzip -lz ' ac_ct_CC='gcc' acx_pthread_config='' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build='i686-pc-linux-gnu' build_alias='' build_cpu='i686' build_os='linux-gnu' build_vendor='pc' classpath='classpath.jar' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host='i686-pc-linux-gnu' host_alias='' host_cpu='i686' host_os='linux-gnu' host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /home/barracuda/mysource/sieelf/ep3elf/jelatine-0.9.4/install-sh' jar_support='yes' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='/bin/mkdir -p' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/arm' preverifier='../preverifier/preverifier' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='arm-elf-eabi' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "Jelatine" #define PACKAGE_TARNAME "jelatine" #define PACKAGE_VERSION "0.9.4" #define PACKAGE_STRING "Jelatine 0.9.4" #define PACKAGE_BUGREPORT "gabriele.svelto@gmail.com" #define PACKAGE_URL "" #define PACKAGE "jelatine" #define VERSION "0.9.4" #define JEL_POINTER_REVERSAL 1 #define NDEBUG 1 #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 __EXTENSIONS__ 1 #define _ALL_SOURCE 1 #define _GNU_SOURCE 1 #define _POSIX_PTHREAD_SEMANTICS 1 #define _TANDEM_SOURCE 1 #define JEL_JARFILE_SUPPORT 1 #define JEL_THREAD_POSIX 1 #define JEL_FINALIZER 1 #define STDC_HEADERS 1 #define HAVE__BOOL 1 #define HAVE_STDBOOL_H 1 #define TIME_WITH_SYS_TIME 1 #define HAVE_ARPA_INET_H 1 #define HAVE_DIRENT_H 1 #define HAVE_FCNTL_H 1 #define HAVE_ICONV_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_LANGINFO_H 1 #define HAVE_MATH_H 1 #define HAVE_STDARG_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_UNISTD_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_NETINET_IN_H 1 #define HAVE_NETDB_H 1 #define SIZEOF_VOID_P 4 #define SIZEOF_LONG 4 #define SIZEOF_LONG_LONG 8 #define HAVE_INTPTR_T 1 #define HAVE_UINTPTR_T 1 #define HAVE_PTRDIFF_T 1 #define HAVE___BUILTIN_NAN 1 #define HAVE_ATTRIBUTE_CONST 1 #define HAVE_ATTRIBUTE_MALLOC 1 #define HAVE_ATTRIBUTE_NORETURN 1 #define HAVE_ATTRIBUTE_PURE 1 #define TLS __thread #define HAVE_STDLIB_H 1 #define HAVE_MALLOC 1 #define HAVE_VPRINTF 1 #define HAVE_GETTIMEOFDAY 1 #define HAVE_CLOCK_GETTIME 1 #define HAVE_VA_COPY 1 #define HAVE___VA_COPY 1 #define HAVE_FMOD 1 #define HAVE_SIN 1 #define HAVE_COS 1 #define HAVE_TAN 1 #define HAVE_SQRT 1 #define HAVE_CEIL 1 #define HAVE_FLOOR 1 #define HAVE_PTHREAD_YIELD 1 #define JEL_FP_SUPPORT 1 #define JEL_SOCKET_SUPPORT 1 configure: exit 0