This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by gzip configure 1.3.12, which was generated by GNU Autoconf 2.61. Invocation command line was $ ./configure --prefix=/usr --bindir=/bin --infodir=/home/aj/S/gzip/gzip-1.3.12/debian/gzip/usr/share/info --mandir=/home/aj/S/gzip/gzip-1.3.12/debian/gzip/usr/share/man ## --------- ## ## Platform. ## ## --------- ## hostname = blae uname -m = x86_64 uname -r = 2.6.22-2-amd64 uname -s = Linux uname -v = #1 SMP Thu Aug 30 23:43:59 UTC 2007 /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/sbin PATH: /usr/bin PATH: /sbin PATH: /bin PATH: /usr/bin/X11 ## ----------- ## ## Core tests. ## ## ----------- ## configure:1854: checking for a BSD-compatible install configure:1910: result: /usr/bin/install -c configure:1921: checking whether build environment is sane configure:1964: result: yes configure:1992: checking for a thread-safe mkdir -p configure:2031: result: /bin/mkdir -p configure:2044: checking for gawk configure:2060: found /usr/bin/gawk configure:2071: result: gawk configure:2082: checking whether make sets $(MAKE) configure:2103: result: yes configure:2304: checking for style of include used by make configure:2332: result: GNU configure:2402: checking for gcc configure:2418: found /usr/bin/gcc configure:2429: result: gcc configure:2667: checking for C compiler version configure:2674: gcc --version >&5 gcc (GCC) 4.2.1 (Debian 4.2.1-4) Copyright (C) 2007 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:2677: $? = 0 configure:2684: gcc -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2 --enable-clocale=gnu --enable-libstdcxx-debug --enable-mpfr --disable-werror --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.2.1 (Debian 4.2.1-4) configure:2687: $? = 0 configure:2694: gcc -V >&5 gcc: '-V' option must have argument configure:2697: $? = 1 configure:2720: checking for C compiler default output file name configure:2747: gcc -g -O2 -Wall conftest.c >&5 configure:2750: $? = 0 configure:2788: result: a.out configure:2805: checking whether the C compiler works configure:2815: ./a.out configure:2818: $? = 0 configure:2835: result: yes configure:2842: checking whether we are cross compiling configure:2844: result: no configure:2847: checking for suffix of executables configure:2854: gcc -o conftest -g -O2 -Wall conftest.c >&5 configure:2857: $? = 0 configure:2881: result: configure:2887: checking for suffix of object files configure:2913: gcc -c -g -O2 -Wall conftest.c >&5 configure:2916: $? = 0 configure:2939: result: o configure:2943: checking whether we are using the GNU C compiler configure:2972: gcc -c -g -O2 -Wall conftest.c >&5 configure:2978: $? = 0 configure:2995: result: yes configure:3000: checking whether gcc accepts -g configure:3030: gcc -c -g conftest.c >&5 configure:3036: $? = 0 configure:3135: result: yes configure:3152: checking for gcc option to accept ISO C89 configure:3226: gcc -c -g -O2 -Wall conftest.c >&5 configure:3232: $? = 0 configure:3255: result: none needed configure:3275: checking dependency style of gcc configure:3366: result: gcc3 configure:3383: checking for gcc option to accept ISO C99 configure:3542: gcc -c -g -O2 -Wall conftest.c >&5 conftest.c:60: error: expected ';', ',' or ')' before 'text' conftest.c: In function 'main': conftest.c:112: warning: implicit declaration of function 'test_restrict' conftest.c:114: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' conftest.c:114: error: 'newvar' undeclared (first use in this function) conftest.c:114: error: (Each undeclared identifier is reported only once conftest.c:114: error: for each function it appears in.) conftest.c:124: error: 'for' loop initial declaration used outside C99 mode configure:3548: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | /* 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:3542: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:3548: $? = 0 configure:3578: result: -std=gnu99 configure:3708: checking for gcc -std=gnu99 option to accept ISO Standard C configure:3719: result: -std=gnu99 configure:3725: checking whether gcc -std=gnu99 and cc understand -c and -o together configure:3760: gcc -std=gnu99 -c conftest.c -o conftest2.o >&5 configure:3763: $? = 0 configure:3769: gcc -std=gnu99 -c conftest.c -o conftest2.o >&5 configure:3772: $? = 0 configure:3783: cc -c conftest.c >&5 configure:3786: $? = 0 configure:3794: cc -c conftest.c -o conftest2.o >&5 configure:3797: $? = 0 configure:3803: cc -c conftest.c -o conftest2.o >&5 configure:3806: $? = 0 configure:3824: result: yes configure:3855: checking how to run the C preprocessor configure:3895: gcc -std=gnu99 -E conftest.c configure:3901: $? = 0 configure:3932: gcc -std=gnu99 -E conftest.c conftest.c:10:28: error: ac_nonexistent.h: No such file or directory configure:3938: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | /* end confdefs.h. */ | #include configure:3971: result: gcc -std=gnu99 -E configure:4000: gcc -std=gnu99 -E conftest.c configure:4006: $? = 0 configure:4037: gcc -std=gnu99 -E conftest.c conftest.c:10:28: error: ac_nonexistent.h: No such file or directory configure:4043: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | /* end confdefs.h. */ | #include configure:4123: checking for nm configure:4139: found /usr/bin/nm configure:4150: result: nm configure:4176: checking whether ln -s works configure:4180: result: yes configure:4230: checking for ranlib configure:4246: found /usr/bin/ranlib configure:4257: result: ranlib configure:4283: checking for a POSIX-compliant shell configure:4338: result: /bin/sh configure:4356: checking for grep that handles long lines and -e configure:4430: result: /bin/grep configure:4435: checking for egrep configure:4513: result: /bin/grep -E configure:4519: checking for AIX configure:4541: result: no configure:4547: checking for ANSI C header files configure:4577: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4583: $? = 0 configure:4682: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:4685: $? = 0 configure:4691: ./conftest configure:4694: $? = 0 configure:4711: result: yes configure:4735: checking for sys/types.h configure:4756: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4762: $? = 0 configure:4778: result: yes configure:4735: checking for sys/stat.h configure:4756: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4762: $? = 0 configure:4778: result: yes configure:4735: checking for stdlib.h configure:4756: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4762: $? = 0 configure:4778: result: yes configure:4735: checking for string.h configure:4756: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4762: $? = 0 configure:4778: result: yes configure:4735: checking for memory.h configure:4756: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4762: $? = 0 configure:4778: result: yes configure:4735: checking for strings.h configure:4756: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4762: $? = 0 configure:4778: result: yes configure:4735: checking for inttypes.h configure:4756: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4762: $? = 0 configure:4778: result: yes configure:4735: checking for stdint.h configure:4756: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4762: $? = 0 configure:4778: result: yes configure:4735: checking for unistd.h configure:4756: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4762: $? = 0 configure:4778: result: yes configure:4800: checking minix/config.h usability configure:4817: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 conftest.c:54:26: error: minix/config.h: No such file or directory configure:4823: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | #define _GNU_SOURCE 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:4837: result: no configure:4841: checking minix/config.h presence configure:4856: gcc -std=gnu99 -E conftest.c conftest.c:21:26: error: minix/config.h: No such file or directory configure:4862: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | #define _GNU_SOURCE 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:4876: result: no configure:4909: checking for minix/config.h configure:4916: result: no configure:4955: checking whether it is safe to define __EXTENSIONS__ configure:4983: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:4989: $? = 0 configure:5004: result: yes configure:5033: checking for special C compiler options needed for large files configure:5126: result: no configure:5132: checking for _FILE_OFFSET_BITS value needed for large files configure:5167: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:5173: $? = 0 configure:5241: result: no configure:5377: checking whether strerror_r is declared configure:5406: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:5412: $? = 0 configure:5427: result: yes configure:5449: checking for strerror_r configure:5505: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:5511: $? = 0 configure:5529: result: yes configure:5539: checking whether strerror_r returns char * configure:5573: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:5579: $? = 0 configure:5655: result: yes configure:5683: checking fcntl.h usability configure:5700: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:5706: $? = 0 configure:5720: result: yes configure:5724: checking fcntl.h presence configure:5739: gcc -std=gnu99 -E conftest.c configure:5745: $? = 0 configure:5759: result: yes configure:5792: checking for fcntl.h configure:5800: result: yes configure:5683: checking sys/time.h usability configure:5700: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:5706: $? = 0 configure:5720: result: yes configure:5724: checking sys/time.h presence configure:5739: gcc -std=gnu99 -E conftest.c configure:5745: $? = 0 configure:5759: result: yes configure:5792: checking for sys/time.h configure:5800: result: yes configure:5673: checking for stdlib.h configure:5679: result: yes configure:5673: checking for sys/stat.h configure:5679: result: yes configure:5683: checking time.h usability configure:5700: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:5706: $? = 0 configure:5720: result: yes configure:5724: checking time.h presence configure:5739: gcc -std=gnu99 -E conftest.c configure:5745: $? = 0 configure:5759: result: yes configure:5792: checking for time.h configure:5800: result: yes configure:5673: checking for unistd.h configure:5679: result: yes configure:5683: checking utime.h usability configure:5700: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:5706: $? = 0 configure:5720: result: yes configure:5724: checking utime.h presence configure:5739: gcc -std=gnu99 -E conftest.c configure:5745: $? = 0 configure:5759: result: yes configure:5792: checking for utime.h configure:5800: result: yes configure:5683: checking limits.h usability configure:5700: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:5706: $? = 0 configure:5720: result: yes configure:5724: checking limits.h presence configure:5739: gcc -std=gnu99 -E conftest.c configure:5745: $? = 0 configure:5759: result: yes configure:5792: checking for limits.h configure:5800: result: yes configure:5673: checking for memory.h configure:5679: result: yes configure:5832: checking getopt.h usability configure:5849: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:5855: $? = 0 configure:5869: result: yes configure:5873: checking getopt.h presence configure:5888: gcc -std=gnu99 -E conftest.c configure:5894: $? = 0 configure:5908: result: yes configure:5941: checking for getopt.h configure:5949: result: yes configure:5971: checking for getopt_long_only configure:6027: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6033: $? = 0 configure:6051: result: yes configure:6066: checking whether optreset is declared configure:6096: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 conftest.c: In function 'main': conftest.c:44: error: 'optreset' undeclared (first use in this function) conftest.c:44: error: (Each undeclared identifier is reported only once conftest.c:44: error: for each function it appears in.) configure:6102: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | #define _GNU_SOURCE 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 _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define STRERROR_R_CHAR_P 1 | #define HAVE_FCNTL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | /* end confdefs.h. */ | #include | | int | main () | { | #ifndef optreset | (void) optreset; | #endif | | ; | return 0; | } configure:6117: result: no configure:6126: checking for working GNU getopt function configure:6219: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6222: $? = 0 configure:6228: ./conftest conftest: invalid option -- + configure:6231: $? = 0 configure:6247: result: yes configure:6254: checking whether getenv is declared configure:6283: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:6289: $? = 0 configure:6304: result: yes configure:6322: checking for inline configure:6348: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 conftest.c:42: warning: C99 inline functions are not supported; using GNU89 conftest.c:42: warning: to disable this warning use -fgnu89-inline or the gnu_inline function attribute configure:6354: $? = 0 configure:6372: result: inline configure:6393: checking for stdbool.h that conforms to C99 configure:6486: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 conftest.c:66: warning: the address of 's' will always evaluate as 'true' conftest.c: In function 'main': conftest.c:108: warning: the address of 'a' will always evaluate as 'true' conftest.c:108: warning: the address of 'b' will always evaluate as 'true' conftest.c:108: warning: the address of 'c' will always evaluate as 'true' conftest.c:108: warning: the address of 'd' will always evaluate as 'true' conftest.c:108: warning: the address of 'f' will always evaluate as 'true' conftest.c:108: warning: the address of 'g' will always evaluate as 'true' conftest.c:108: warning: the address of 'h' will always evaluate as 'true' conftest.c:108: warning: the address of 'i' will always evaluate as 'true' conftest.c:109: warning: the address of 'n' will always evaluate as 'true' conftest.c:109: warning: the address of 'o' will always evaluate as 'true' conftest.c:109: warning: the address of 'p' will always evaluate as 'true' configure:6492: $? = 0 configure:6507: result: yes configure:6509: checking for _Bool configure:6539: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:6545: $? = 0 configure:6560: result: yes configure:6595: checking for lstat configure:6651: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6657: $? = 0 configure:6675: result: yes configure:6595: checking for pipe configure:6651: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6657: $? = 0 configure:6675: result: yes configure:6595: checking for futimes configure:6651: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6657: $? = 0 configure:6675: result: yes configure:6595: checking for futimesat configure:6651: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6657: $? = 0 configure:6675: result: yes configure:6595: checking for chown configure:6651: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6657: $? = 0 configure:6675: result: yes configure:6595: checking for fchmod configure:6651: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6657: $? = 0 configure:6675: result: yes configure:6595: checking for fchown configure:6651: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6657: $? = 0 configure:6675: result: yes configure:6595: checking for fdopendir configure:6651: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6657: $? = 0 configure:6675: result: yes configure:6595: checking for siginterrupt configure:6651: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:6657: $? = 0 configure:6675: result: yes configure:6687: checking whether stat file-mode macros are broken configure:6724: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:6730: $? = 0 configure:6745: result: no configure:6757: checking for C/C++ restrict keyword configure:6793: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:6799: $? = 0 configure:6817: result: restrict configure:6842: checking absolute name of configure:6866: result: ///usr/include/sys/time.h configure:6882: checking for struct timeval configure:6912: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:6918: $? = 0 configure:6933: result: yes configure:6966: checking for struct timespec in configure:6993: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:6999: $? = 0 configure:7014: result: yes configure:7082: checking absolute name of configure:7106: result: ///usr/include/time.h configure:7138: checking determine whether the utimes function works configure:7211: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:7214: $? = 0 configure:7220: ./conftest configure:7223: $? = 0 configure:7239: result: yes configure:7261: checking for struct utimbuf configure:7294: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:7300: $? = 0 configure:7315: result: yes configure:7347: checking for error_at_line configure:7373: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 configure:7379: $? = 0 configure:7396: result: yes configure:7413: checking for working fcntl.h configure:7479: gcc -std=gnu99 -o conftest -g -O2 -Wall conftest.c >&5 conftest.c: In function 'main': conftest.c:74: warning: the address of 'constants' will always evaluate as 'true' configure:7482: $? = 0 configure:7488: ./conftest configure:7491: $? = 0 configure:7512: result: yes configure:7535: checking absolute name of configure:7559: result: ///usr/include/fcntl.h configure:7611: checking whether the compiler generally respects inline configure:7642: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:7648: $? = 0 configure:7665: result: yes configure:7685: checking for struct stat.st_atim.tv_nsec configure:7715: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:7721: $? = 0 configure:7780: result: yes configure:7788: checking whether struct stat.st_atim is of type struct timespec configure:7825: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 configure:7831: $? = 0 configure:7846: result: yes configure:8188: checking for struct stat.st_birthtimespec.tv_nsec configure:8218: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 conftest.c: In function 'main': conftest.c:68: error: 'struct stat' has no member named 'st_birthtimespec' configure:8224: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | #define _GNU_SOURCE 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 _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define STRERROR_R_CHAR_P 1 | #define HAVE_FCNTL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_FUTIMES 1 | #define HAVE_FUTIMESAT 1 | #define HAVE_CHOWN 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_SIGINTERRUPT 1 | #define ABSOLUTE_SYS_TIME_H "///usr/include/sys/time.h" | #define ABSOLUTE_TIME_H "///usr/include/time.h" | #define HAVE_WORKING_UTIMES 1 | #define HAVE_STRUCT_UTIMBUF 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define ABSOLUTE_FCNTL_H "///usr/include/fcntl.h" | #define GNULIB_FCNTL_SAFER 1 | #define HAVE_INLINE 1 | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1 | #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | static struct stat ac_aggr; | if (ac_aggr.st_birthtimespec.tv_nsec) | return 0; | ; | return 0; | } configure:8259: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 conftest.c: In function 'main': conftest.c:68: error: 'struct stat' has no member named 'st_birthtimespec' configure:8265: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | #define _GNU_SOURCE 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 _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define STRERROR_R_CHAR_P 1 | #define HAVE_FCNTL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_FUTIMES 1 | #define HAVE_FUTIMESAT 1 | #define HAVE_CHOWN 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_SIGINTERRUPT 1 | #define ABSOLUTE_SYS_TIME_H "///usr/include/sys/time.h" | #define ABSOLUTE_TIME_H "///usr/include/time.h" | #define HAVE_WORKING_UTIMES 1 | #define HAVE_STRUCT_UTIMBUF 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define ABSOLUTE_FCNTL_H "///usr/include/fcntl.h" | #define GNULIB_FCNTL_SAFER 1 | #define HAVE_INLINE 1 | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1 | #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | static struct stat ac_aggr; | if (sizeof ac_aggr.st_birthtimespec.tv_nsec) | return 0; | ; | return 0; | } configure:8283: result: no configure:8293: checking for struct stat.st_birthtimensec configure:8323: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 conftest.c: In function 'main': conftest.c:68: error: 'struct stat' has no member named 'st_birthtimensec' configure:8329: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | #define _GNU_SOURCE 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 _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define STRERROR_R_CHAR_P 1 | #define HAVE_FCNTL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_FUTIMES 1 | #define HAVE_FUTIMESAT 1 | #define HAVE_CHOWN 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_SIGINTERRUPT 1 | #define ABSOLUTE_SYS_TIME_H "///usr/include/sys/time.h" | #define ABSOLUTE_TIME_H "///usr/include/time.h" | #define HAVE_WORKING_UTIMES 1 | #define HAVE_STRUCT_UTIMBUF 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define ABSOLUTE_FCNTL_H "///usr/include/fcntl.h" | #define GNULIB_FCNTL_SAFER 1 | #define HAVE_INLINE 1 | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1 | #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | static struct stat ac_aggr; | if (ac_aggr.st_birthtimensec) | return 0; | ; | return 0; | } configure:8364: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 conftest.c: In function 'main': conftest.c:68: error: 'struct stat' has no member named 'st_birthtimensec' configure:8370: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | #define _GNU_SOURCE 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 _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define STRERROR_R_CHAR_P 1 | #define HAVE_FCNTL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_FUTIMES 1 | #define HAVE_FUTIMESAT 1 | #define HAVE_CHOWN 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_SIGINTERRUPT 1 | #define ABSOLUTE_SYS_TIME_H "///usr/include/sys/time.h" | #define ABSOLUTE_TIME_H "///usr/include/time.h" | #define HAVE_WORKING_UTIMES 1 | #define HAVE_STRUCT_UTIMBUF 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define ABSOLUTE_FCNTL_H "///usr/include/fcntl.h" | #define GNULIB_FCNTL_SAFER 1 | #define HAVE_INLINE 1 | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1 | #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | static struct stat ac_aggr; | if (sizeof ac_aggr.st_birthtimensec) | return 0; | ; | return 0; | } configure:8388: result: no configure:8398: checking for struct stat.st_birthtim.tv_nsec configure:8428: gcc -std=gnu99 -c -g -O2 -Wall conftest.c >&5 conftest.c: In function 'main': conftest.c:68: error: 'struct stat' has no member named 'st_birthtim' configure:8434: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "gzip" | #define PACKAGE_TARNAME "gzip" | #define PACKAGE_VERSION "1.3.12" | #define PACKAGE_STRING "gzip 1.3.12" | #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" | #define PACKAGE "gzip" | #define VERSION "1.3.12" | #define _GNU_SOURCE 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 _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define STRERROR_R_CHAR_P 1 | #define HAVE_FCNTL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_FUTIMES 1 | #define HAVE_FUTIMESAT 1 | #define HAVE_CHOWN 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_SIGINTERRUPT 1 | #define ABSOLUTE_SYS_TIME_H "///usr/include/sys/time.h" | #define ABSOLUTE_TIME_H "///usr/include/time.h" | #define HAVE_WORKING_UTIMES 1 | #define HAVE_STRUCT_UTIMBUF 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define ABSOLUTE_FCNTL_H "///usr/include/fcntl.h" | #define GNULIB_FCNTL_SAFER 1 | #define HAVE_INLINE 1 | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1 | #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | static struct stat ac_aggr; | if (ac_aggr.st_birthtim.tv_nsec) | return 0; | ; | return 0; | } ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_c_compiler_gnu=yes ac_cv_c_inline=inline ac_cv_c_restrict=restrict ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-g -O2 -Wall' 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= ac_cv_env_target_alias_value= ac_cv_func_chown=yes ac_cv_func_fchmod=yes ac_cv_func_fchown=yes ac_cv_func_fdopendir=yes ac_cv_func_futimes=yes ac_cv_func_futimesat=yes ac_cv_func_getopt_long_only=yes ac_cv_func_lstat=yes ac_cv_func_pipe=yes ac_cv_func_siginterrupt=yes ac_cv_func_strerror_r=yes ac_cv_func_strerror_r_char_p=yes ac_cv_have_decl_getenv=yes ac_cv_have_decl_optreset=no ac_cv_have_decl_strerror_r=yes ac_cv_header_fcntl_h=yes ac_cv_header_getopt_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_limits_h=yes ac_cv_header_memory_h=yes ac_cv_header_minix_config_h=no ac_cv_header_stat_broken=no 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_stat_h=yes ac_cv_header_sys_time_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_time_h=yes ac_cv_header_unistd_h=yes ac_cv_header_utime_h=yes ac_cv_lib_error_at_line=yes ac_cv_member_struct_stat_st_atim_tv_nsec=yes ac_cv_member_struct_stat_st_birthtimensec=no ac_cv_member_struct_stat_st_birthtimespec_tv_nsec=no ac_cv_objext=o ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GREP=/bin/grep ac_cv_path_install='/usr/bin/install -c' ac_cv_path_mkdir=/bin/mkdir ac_cv_path_shell=/bin/sh ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_NM=nm ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_prog_cc_gcc_c_o=yes ac_cv_prog_cc_stdc=-std=gnu99 ac_cv_prog_make_make_set=yes ac_cv_safe_to_define___extensions__=yes ac_cv_sys_file_offset_bits=no ac_cv_sys_largefile_CC=no ac_cv_type__Bool=yes ac_cv_typeof_struct_stat_st_atim_is_struct_timespec=yes am_cv_CC_dependencies_compiler_type=gcc3 gl_cv_absolute_fcntl_h=///usr/include/fcntl.h gl_cv_absolute_sys_time_h=///usr/include/sys/time.h gl_cv_absolute_time_h=///usr/include/time.h gl_cv_c_inline_effective=yes gl_cv_func_gnu_getopt=yes gl_cv_func_working_utimes=yes gl_cv_header_working_fcntl_h=yes gl_cv_sys_struct_timespec_in_time_h=yes gl_cv_sys_struct_timeval=yes gl_cv_sys_struct_utimbuf=yes ## ----------------- ## ## Output variables. ## ## ----------------- ## ABSOLUTE_FCNTL_H='"///usr/include/fcntl.h"' ABSOLUTE_STDLIB_H='' ABSOLUTE_SYS_STAT_H='' ABSOLUTE_SYS_TIME_H='"///usr/include/sys/time.h"' ABSOLUTE_TIME_H='"///usr/include/time.h"' ABSOLUTE_UNISTD_H='' ACLOCAL='${SHELL} /home/aj/S/gzip/gzip-1.3.12/build-aux/missing --run aclocal-1.10' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /home/aj/S/gzip/gzip-1.3.12/build-aux/missing --run tar' ASCPPFLAGS='' ASCPPPOST='' ASFLAGS_config='' AUTOCONF='${SHELL} /home/aj/S/gzip/gzip-1.3.12/build-aux/missing --run autoconf' AUTOHEADER='${SHELL} /home/aj/S/gzip/gzip-1.3.12/build-aux/missing --run autoheader' AUTOMAKE='${SHELL} /home/aj/S/gzip/gzip-1.3.12/build-aux/missing --run automake-1.10' AWK='gawk' CC='gcc -std=gnu99' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2 -Wall' CPP='gcc -std=gnu99 -E' CPPFLAGS='' CYGPATH_W='echo' DEFS='' DEPDIR='.deps' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' FCNTL_H='fcntl.h' GETOPT_H='' GL_COND_LIBTOOL_FALSE='' GL_COND_LIBTOOL_TRUE='#' GNULIB_CHOWN='0' GNULIB_DUP2='0' GNULIB_FCHDIR='0' GNULIB_FTRUNCATE='0' GNULIB_GETCWD='0' GNULIB_GETLOGIN_R='0' GNULIB_GETSUBOPT='0' GNULIB_MKDTEMP='0' GNULIB_MKSTEMP='0' GNULIB_READLINK='0' GREP='/bin/grep' HAVE_DECL_GETLOGIN_R='1' HAVE_DUP2='1' HAVE_FTRUNCATE='1' HAVE_GETSUBOPT='1' HAVE_MKDTEMP='1' HAVE_READLINK='1' HAVE_STRUCT_TIMEVAL='1' HAVE_SYS_TIME_H='1' HAVE_UNISTD_H='' HAVE__BOOL='' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LDFLAGS='' LIBGZIP_LIBDEPS='' LIBGZIP_LTLIBDEPS='' LIBINTL='' LIBOBJS='' LIBS='' LN_S='ln -s' LTLIBINTL='' LTLIBOBJS='' MAKEINFO='${SHELL} /home/aj/S/gzip/gzip-1.3.12/build-aux/missing --run makeinfo' NM='nm' OBJEXT='o' PACKAGE='gzip' PACKAGE_BUGREPORT='bug-gzip@gnu.org' PACKAGE_NAME='gzip' PACKAGE_STRING='gzip 1.3.12' PACKAGE_TARNAME='gzip' PACKAGE_VERSION='1.3.12' PATH_SEPARATOR=':' RANLIB='ranlib' REPLACE_CHOWN='0' REPLACE_FCHDIR='0' REPLACE_GETCWD='0' REPLACE_GETTIMEOFDAY='0' REPLACE_LOCALTIME_R='GNULIB_PORTCHECK' REPLACE_MKSTEMP='0' REPLACE_NANOSLEEP='GNULIB_PORTCHECK' REPLACE_STRPTIME='GNULIB_PORTCHECK' REPLACE_TIMEGM='GNULIB_PORTCHECK' SET_MAKE='' SHELL='/bin/sh' STDBOOL_H='' STRIP='' SYS_STAT_H='' SYS_TIME_H='' SYS_TIME_H_DEFINES_STRUCT_TIMESPEC='0' TIME_H_DEFINES_STRUCT_TIMESPEC='1' VERSION='1.3.12' ac_ct_CC='gcc' ac_prefix_program='' 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='/bin' build_alias='' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='NONE' gl_LIBOBJS=' exitfail.o open-safer.o creat-safer.o' gl_LTLIBOBJS='' host_alias='' htmldir='${docdir}' includedir='${prefix}/include' infodir='/home/aj/S/gzip/gzip-1.3.12/debian/gzip/usr/share/info' install_sh='$(SHELL) /home/aj/S/gzip/gzip-1.3.12/build-aux/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='/home/aj/S/gzip/gzip-1.3.12/debian/gzip/usr/share/man' mkdir_p='/bin/mkdir -p' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "gzip" #define PACKAGE_TARNAME "gzip" #define PACKAGE_VERSION "1.3.12" #define PACKAGE_STRING "gzip 1.3.12" #define PACKAGE_BUGREPORT "bug-gzip@gnu.org" #define PACKAGE "gzip" #define VERSION "1.3.12" #define _GNU_SOURCE 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 _POSIX_PTHREAD_SEMANTICS 1 #define _TANDEM_SOURCE 1 #define HAVE_DECL_STRERROR_R 1 #define HAVE_STRERROR_R 1 #define STRERROR_R_CHAR_P 1 #define HAVE_FCNTL_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_STDLIB_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_TIME_H 1 #define HAVE_UNISTD_H 1 #define HAVE_UTIME_H 1 #define HAVE_LIMITS_H 1 #define HAVE_MEMORY_H 1 #define HAVE_GETOPT_H 1 #define HAVE_GETOPT_LONG_ONLY 1 #define HAVE_DECL_GETENV 1 #define HAVE__BOOL 1 #define HAVE_STDBOOL_H 1 #define HAVE_LSTAT 1 #define HAVE_PIPE 1 #define HAVE_FUTIMES 1 #define HAVE_FUTIMESAT 1 #define HAVE_CHOWN 1 #define HAVE_FCHMOD 1 #define HAVE_FCHOWN 1 #define HAVE_FDOPENDIR 1 #define HAVE_SIGINTERRUPT 1 #define ABSOLUTE_SYS_TIME_H "///usr/include/sys/time.h" #define ABSOLUTE_TIME_H "///usr/include/time.h" #define HAVE_WORKING_UTIMES 1 #define HAVE_STRUCT_UTIMBUF 1 #define HAVE_WORKING_O_NOATIME 1 #define HAVE_WORKING_O_NOFOLLOW 1 #define ABSOLUTE_FCNTL_H "///usr/include/fcntl.h" #define GNULIB_FCNTL_SAFER 1 #define HAVE_INLINE 1 #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1 #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1 configure: caught signal 2 configure: exit 1