bug-tar
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-tar] [GNU tar 1.15.1] testsuite: 20 failed


From: Eric Blake
Subject: [Bug-tar] [GNU tar 1.15.1] testsuite: 20 failed
Date: Sat, 13 Aug 2005 13:51:00 -0600
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

I'm not sure what the failure is here, but am willing to help pin it down
if you can give me some hints on what to look for.

- --
Life is short - so eat dessert first!

Eric Blake             address@hidden
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFC/k8k84KuGfSFAYARAo+MAJwKNS6wqZyYEBodV+7dKzyUZrXSvgCg0cep
ztTJplOfbgkzXL+nsyoGeF4=
=MO1F
-----END PGP SIGNATURE-----
## -------------------------- ##
## GNU tar 1.15.1 test suite. ##
## -------------------------- ##

testsuite: command line was:
  $ ./testsuite -v 20

## ----------- ##
## ChangeLogs. ##
## ----------- ##

testsuite: ../ChangeLog:
| 2005-08-13  Eric Blake  <address@hidden>
| 
|       * m4/rmt.m4 (PU_RMT): Account for $EXEEXT when building rmt.
| 
| 2004-12-21  Sergey Poznyakoff  <address@hidden>
| 
|       * configure.ac: Raise version number to 1.15.1
|       Check for locale.h
|       * NEWS: Entry for 1.15.1
|       * src/buffer.c: Bugfix. Changes introduced 2004-11-26

## --------- ##
## Platform. ##
## --------- ##

hostname = LOUNGE
uname -m = i686
uname -r = 1.5.19s(0.137/4/2)
uname -s = CYGWIN_NT-5.1
uname -v = 20050811 13:04:03

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
hostinfo               = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/eblake/tar-1.15.1/tests
PATH: /home/eblake/tar-1.15.1/src
PATH: /home/eblake/tar-1.15.1
PATH: /usr/bin
PATH: /usr/local/bin
PATH: /bin
PATH: /usr/X11R6/bin
PATH: /cygdrive/c/WINDOWS/system32
PATH: /cygdrive/c/WINDOWS
PATH: /cygdrive/c/WINDOWS/System32/Wbem
PATH: /cygdrive/c/Progra~1/Common~1/Adapte~1/System
PATH: /usr/lib/lapack
PATH: /usr/sbin

testsuite: atconfig:
| # Configurable variable values for building test suites.
| # Generated by ./config.status.
| # Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc.
| 
| # The test suite will define top_srcdir=/../.. etc.
| at_testdir='tests'
| abs_builddir='/home/eblake/tar-1.15.1/tests'
| at_srcdir='.'
| abs_srcdir='/home/eblake/tar-1.15.1/tests'
| at_top_srcdir='..'
| abs_top_srcdir='/home/eblake/tar-1.15.1/tests/..'
| at_top_builddir='../'
| abs_top_builddir='/home/eblake/tar-1.15.1/tests/../.'
| 
| AUTOTEST_PATH='tests'
| 
| SHELL=${CONFIG_SHELL-'/bin/sh'}

testsuite: atlocal:
| # tests/atlocal.  Generated from atlocal.in by configure.                     
                -*- shell-script -*-
| # Configurable variable values for tar test suite.
| # Copyright (C) 2004 Free Software Foundation, Inc.
| 
| 
PATH=/home/eblake/tar-1.15.1/tests:/home/eblake/tar-1.15.1/tests/.././src:$top_srcdir:$srcdir:$PATH
| 

## ---------------- ##
## Tested programs. ##
## ---------------- ##

testsuite.at:57: /home/eblake/tar-1.15.1/src/tar --version
tar (GNU tar) 1.15.1

## ------------------ ##
## Running the tests. ##
## ------------------ ##
testsuite: starting at: Sat Aug 13 13:47:16 MDT 2005
testsuite: ending at: Sat Aug 13 13:47:31 MDT 2005
testsuite: test suite duration: 0h 0m 15s

## ------------- ##
## Test results. ##
## ------------- ##

ERROR: 1 test was run,
1 failed unexpectedly.

## ------------------------ ##
## Summary of the failures. ##
## ------------------------ ##
Failed tests:
GNU tar 1.15.1 test suite test groups:

 NUM: FILENAME:LINE      TEST-GROUP-NAME
      KEYWORDS

  20: listed02.at:28     working --listed
      listed02

## ---------------------- ##
## Detailed failed tests. ##
## ---------------------- ##

20. listed02.at:28: testing ...
listed02.at:148:
mkdir gnu
(cd gnu
TAR_OPTIONS="-H gnu"
export TAR_OPTIONS
rm -rf *

mkdir directory

echo Create directories
mkdir tart
sleep 1
mkdir tart/c0
sleep 1
mkdir tart/c1
sleep 1

for file in tart/a1 tart/b1 tart/c0/cq1 tart/c0/cq2 tart/c1/ca1 tart/c1/ca2
do
  echo File $file > $file
  sleep 1
done

sleep 1
echo Creating main archive
tar -c -v --listed-incremental=tart.incr1 -f archive.1 tart || exit 1

sleep 1
echo Modifying filesystem
rm tart/a1
mv tart/b1 tart/b2
mv tart/c1 tart/c2
touch tart/c2/ca3

echo Directory contents
find tart|sort 2>/dev/null

sleep 1
echo Creating incremental archive
cp -p tart.incr1 tart.incr2
tar -c -v --listed-incremental=tart.incr2 -f archive.2 tart || exit 1

sleep 1

rm -rf tart/*
echo Extracting main archive
tar -x -v --listed-incremental=tart.incr1 -f archive.1 || exit 1
echo Extracting incremental archive
# This command should produce three messages about deletion
# of the existing files, that may appear in any order. Piping
# to sort makes sure we don't depend on any particular ordering.
tar -x -v --listed-incremental=tart.incr2 -f archive.2 | sort 2>/dev/null

echo Final files:
find tart|sort 2>/dev/null
)
--- -   2005-08-13 13:47:31.545250000 -0600
+++ /home/eblake/tar-1.15.1/tests/testsuite.dir/at-stderr       2005-08-13 
13:47:31.498375000 -0600
@@ -1,4 +1,5 @@
 tar: tart/c0: Directory is new
 tar: tart/c1: Directory is new
+tar: tart/c0: Directory has been renamed
 tar: tart/c2: Directory is new
 
--- -   2005-08-13 13:47:31.607750000 -0600
+++ /home/eblake/tar-1.15.1/tests/testsuite.dir/at-stdout       2005-08-13 
13:47:31.545250000 -0600
@@ -25,6 +25,8 @@
 tart/c0/
 tart/c2/
 tart/b2
+tart/c0/cq1
+tart/c0/cq2
 tart/c2/ca1
 tart/c2/ca2
 tart/c2/ca3
@@ -45,6 +47,8 @@
 tart/
 tart/b2
 tart/c0/
+tart/c0/cq1
+tart/c0/cq2
 tart/c2/
 tart/c2/ca1
 tart/c2/ca2
20. listed02.at:28: 20. working --listed (listed02.at:28): FAILED 
(listed02.at:148)


## -------------- ##
## ..//config.log ##
## -------------- ##
| This file contains any messages produced by compilers while
| running configure, to aid debugging if configure makes a mistake.
| 
| It was created by GNU tar configure 1.15.1, which was
| generated by GNU Autoconf 2.59.  Invocation command line was
| 
|   $ ./configure -C
| 
| ## --------- ##
| ## Platform. ##
| ## --------- ##
| 
| hostname = LOUNGE
| uname -m = i686
| uname -r = 1.5.19s(0.137/4/2)
| uname -s = CYGWIN_NT-5.1
| uname -v = 20050811 13:04:03
| 
| /usr/bin/uname -p = unknown
| /bin/uname -X     = unknown
| 
| /bin/arch              = unknown
| /usr/bin/arch -k       = unknown
| /usr/convex/getsysinfo = unknown
| hostinfo               = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = unknown
| /bin/universe          = unknown
| 
| PATH: /usr/bin
| PATH: /usr/local/bin
| PATH: /usr/bin
| PATH: /bin
| PATH: /usr/X11R6/bin
| PATH: /usr/bin
| PATH: /cygdrive/c/WINDOWS/system32
| PATH: /cygdrive/c/WINDOWS
| PATH: /cygdrive/c/WINDOWS/System32/Wbem
| PATH: /cygdrive/c/Progra~1/Common~1/Adapte~1/System
| PATH: /usr/lib/lapack
| PATH: /usr/sbin
| 
| 
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
| 
| configure:1272: creating cache config.cache
| configure:1422: checking for a BSD-compatible install
| configure:1477: result: /usr/bin/install -c
| configure:1488: checking whether build environment is sane
| configure:1531: result: yes
| configure:1596: checking for gawk
| configure:1612: found /usr/bin/gawk
| configure:1622: result: gawk
| configure:1632: checking whether make sets $(MAKE)
| configure:1652: result: yes
| configure:1839: checking for style of include used by make
| configure:1867: result: GNU
| configure:1938: checking for gcc
| configure:1954: found /usr/bin/gcc
| configure:1964: result: gcc
| configure:2208: checking for C compiler version
| configure:2211: gcc --version </dev/null >&5
| gcc (GCC) 3.4.4 (cygming special) (gdc 0.12, using dmd 0.125)
| Copyright (C) 2004 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:2214: $? = 0
| configure:2216: gcc -v </dev/null >&5
| Reading specs from /usr/lib/gcc/i686-pc-cygwin/3.4.4/specs
| Configured with: /gcc/gcc-3.4.4/gcc-3.4.4-1/configure --verbose --prefix=/usr 
--exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --libexecdir=/usr/lib 
--mandir=/usr/share/man --infodir=/usr/share/info 
--enable-languages=c,ada,c++,d,f77,java,objc --enable-nls 
--without-included-gettext --enable-version-specific-runtime-libs --without-x 
--enable-libgcj --disable-java-awt --with-system-zlib --enable-interpreter 
--disable-libgcj-debug --enable-threads=posix --enable-java-gc=boehm 
--disable-win32-registry --enable-sjlj-exceptions --enable-hash-synchronization 
--enable-libstdcxx-debug : (reconfigured) 
| Thread model: posix
| gcc version 3.4.4 (cygming special) (gdc 0.12, using dmd 0.125)
| configure:2219: $? = 0
| configure:2221: gcc -V </dev/null >&5
| gcc: `-V' option must have argument
| configure:2224: $? = 1
| configure:2247: checking for C compiler default output file name
| configure:2250: gcc    conftest.c  >&5
| configure:2253: $? = 0
| configure:2299: result: a.exe
| configure:2304: checking whether the C compiler works
| configure:2310: ./a.exe
| configure:2313: $? = 0
| configure:2330: result: yes
| configure:2337: checking whether we are cross compiling
| configure:2339: result: no
| configure:2342: checking for suffix of executables
| configure:2344: gcc -o conftest.exe    conftest.c  >&5
| configure:2347: $? = 0
| configure:2372: result: .exe
| configure:2378: checking for suffix of object files
| configure:2399: gcc -c   conftest.c >&5
| configure:2402: $? = 0
| configure:2424: result: o
| configure:2428: checking whether we are using the GNU C compiler
| configure:2452: gcc -c   conftest.c >&5
| configure:2458: $? = 0
| configure:2462: test -z 
|                        || test ! -s conftest.err
| configure:2465: $? = 0
| configure:2468: test -s conftest.o
| configure:2471: $? = 0
| configure:2484: result: yes
| configure:2490: checking whether gcc accepts -g
| configure:2511: gcc -c -g  conftest.c >&5
| configure:2517: $? = 0
| configure:2521: test -z 
|                        || test ! -s conftest.err
| configure:2524: $? = 0
| configure:2527: test -s conftest.o
| configure:2530: $? = 0
| configure:2541: result: yes
| configure:2558: checking for gcc option to accept ANSI C
| configure:2628: gcc  -c -g -O2  conftest.c >&5
| configure:2634: $? = 0
| configure:2638: test -z 
|                        || test ! -s conftest.err
| configure:2641: $? = 0
| configure:2644: test -s conftest.o
| configure:2647: $? = 0
| configure:2665: result: none needed
| configure:2683: gcc -c -g -O2  conftest.c >&5
| conftest.c:2: error: parse error before "me"
| configure:2689: $? = 1
| configure: failed program was:
| | #ifndef __cplusplus
| |   choke me
| | #endif
| configure:2824: checking dependency style of gcc
| configure:2914: result: gcc3
| configure:2937: checking how to run the C preprocessor
| configure:2972: gcc -E  conftest.c
| configure:2978: $? = 0
| configure:3010: gcc -E  conftest.c
| conftest.c:12:28: ac_nonexistent.h: No such file or directory
| configure:3016: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #define _GNU_SOURCE 1
| | /* end confdefs.h.  */
| | #include <ac_nonexistent.h>
| configure:3055: result: gcc -E
| configure:3079: gcc -E  conftest.c
| configure:3085: $? = 0
| configure:3117: gcc -E  conftest.c
| conftest.c:12:28: ac_nonexistent.h: No such file or directory
| configure:3123: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #define _GNU_SOURCE 1
| | /* end confdefs.h.  */
| | #include <ac_nonexistent.h>
| configure:3167: checking for egrep
| configure:3177: result: grep -E
| configure:3183: checking for AIX
| configure:3205: result: no
| configure:3211: checking for ANSI C header files
| configure:3236: gcc -c -g -O2  conftest.c >&5
| configure:3242: $? = 0
| configure:3246: test -z 
|                        || test ! -s conftest.err
| configure:3249: $? = 0
| configure:3252: test -s conftest.o
| configure:3255: $? = 0
| configure:3344: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:3347: $? = 0
| configure:3349: ./conftest.exe
| configure:3352: $? = 0
| configure:3367: result: yes
| configure:3391: checking for sys/types.h
| configure:3407: gcc -c -g -O2  conftest.c >&5
| configure:3413: $? = 0
| configure:3417: test -z 
|                        || test ! -s conftest.err
| configure:3420: $? = 0
| configure:3423: test -s conftest.o
| configure:3426: $? = 0
| configure:3437: result: yes
| configure:3391: checking for sys/stat.h
| configure:3407: gcc -c -g -O2  conftest.c >&5
| configure:3413: $? = 0
| configure:3417: test -z 
|                        || test ! -s conftest.err
| configure:3420: $? = 0
| configure:3423: test -s conftest.o
| configure:3426: $? = 0
| configure:3437: result: yes
| configure:3391: checking for stdlib.h
| configure:3407: gcc -c -g -O2  conftest.c >&5
| configure:3413: $? = 0
| configure:3417: test -z 
|                        || test ! -s conftest.err
| configure:3420: $? = 0
| configure:3423: test -s conftest.o
| configure:3426: $? = 0
| configure:3437: result: yes
| configure:3391: checking for string.h
| configure:3407: gcc -c -g -O2  conftest.c >&5
| configure:3413: $? = 0
| configure:3417: test -z 
|                        || test ! -s conftest.err
| configure:3420: $? = 0
| configure:3423: test -s conftest.o
| configure:3426: $? = 0
| configure:3437: result: yes
| configure:3391: checking for memory.h
| configure:3407: gcc -c -g -O2  conftest.c >&5
| configure:3413: $? = 0
| configure:3417: test -z 
|                        || test ! -s conftest.err
| configure:3420: $? = 0
| configure:3423: test -s conftest.o
| configure:3426: $? = 0
| configure:3437: result: yes
| configure:3391: checking for strings.h
| configure:3407: gcc -c -g -O2  conftest.c >&5
| configure:3413: $? = 0
| configure:3417: test -z 
|                        || test ! -s conftest.err
| configure:3420: $? = 0
| configure:3423: test -s conftest.o
| configure:3426: $? = 0
| configure:3437: result: yes
| configure:3391: checking for inttypes.h
| configure:3407: gcc -c -g -O2  conftest.c >&5
| configure:3413: $? = 0
| configure:3417: test -z 
|                        || test ! -s conftest.err
| configure:3420: $? = 0
| configure:3423: test -s conftest.o
| configure:3426: $? = 0
| configure:3437: result: yes
| configure:3391: checking for stdint.h
| configure:3407: gcc -c -g -O2  conftest.c >&5
| configure:3413: $? = 0
| configure:3417: test -z 
|                        || test ! -s conftest.err
| configure:3420: $? = 0
| configure:3423: test -s conftest.o
| configure:3426: $? = 0
| configure:3437: result: yes
| configure:3391: checking for unistd.h
| configure:3407: gcc -c -g -O2  conftest.c >&5
| configure:3413: $? = 0
| configure:3417: test -z 
|                        || test ! -s conftest.err
| configure:3420: $? = 0
| configure:3423: test -s conftest.o
| configure:3426: $? = 0
| configure:3437: result: yes
| configure:3459: checking minix/config.h usability
| configure:3471: gcc -c -g -O2  conftest.c >&5
| conftest.c:56:26: minix/config.h: No such file or directory
| configure:3477: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <minix/config.h>
| configure:3500: result: no
| configure:3504: checking minix/config.h presence
| configure:3514: gcc -E  conftest.c
| conftest.c:22:26: minix/config.h: No such file or directory
| configure:3520: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 <minix/config.h>
| configure:3540: result: no
| configure:3575: checking for minix/config.h
| configure:3582: result: no
| configure:3672: checking for gcc
| configure:3698: result: gcc
| configure:3942: checking for C compiler version
| configure:3945: gcc --version </dev/null >&5
| gcc (GCC) 3.4.4 (cygming special) (gdc 0.12, using dmd 0.125)
| Copyright (C) 2004 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:3948: $? = 0
| configure:3950: gcc -v </dev/null >&5
| Reading specs from /usr/lib/gcc/i686-pc-cygwin/3.4.4/specs
| Configured with: /gcc/gcc-3.4.4/gcc-3.4.4-1/configure --verbose --prefix=/usr 
--exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --libexecdir=/usr/lib 
--mandir=/usr/share/man --infodir=/usr/share/info 
--enable-languages=c,ada,c++,d,f77,java,objc --enable-nls 
--without-included-gettext --enable-version-specific-runtime-libs --without-x 
--enable-libgcj --disable-java-awt --with-system-zlib --enable-interpreter 
--disable-libgcj-debug --enable-threads=posix --enable-java-gc=boehm 
--disable-win32-registry --enable-sjlj-exceptions --enable-hash-synchronization 
--enable-libstdcxx-debug : (reconfigured) 
| Thread model: posix
| gcc version 3.4.4 (cygming special) (gdc 0.12, using dmd 0.125)
| configure:3953: $? = 0
| configure:3955: gcc -V </dev/null >&5
| gcc: `-V' option must have argument
| configure:3958: $? = 1
| configure:3961: checking whether we are using the GNU C compiler
| configure:4017: result: yes
| configure:4023: checking whether gcc accepts -g
| configure:4074: result: yes
| configure:4091: checking for gcc option to accept ANSI C
| configure:4198: result: none needed
| configure:4216: gcc -c -g -O2  conftest.c >&5
| conftest.c:2: error: parse error before "me"
| configure:4222: $? = 1
| configure: failed program was:
| | #ifndef __cplusplus
| |   choke me
| | #endif
| configure:4357: checking dependency style of gcc
| configure:4447: result: gcc3
| configure:4506: checking for ranlib
| configure:4522: found /usr/bin/ranlib
| configure:4533: result: ranlib
| configure:4549: checking for bison
| configure:4565: found /usr/bin/bison
| configure:4575: result: bison -y
| configure:4593: checking for special C compiler options needed for large files
| configure:4692: result: no
| configure:4698: checking for _FILE_OFFSET_BITS value needed for large files
| configure:4729: gcc -c -g -O2  conftest.c >&5
| configure:4735: $? = 0
| configure:4739: test -z 
|                        || test ! -s conftest.err
| configure:4742: $? = 0
| configure:4745: test -s conftest.o
| configure:4748: $? = 0
| configure:4813: result: no
| configure:4823: checking for _LARGE_FILES value needed for large files
| configure:4854: gcc -c -g -O2  conftest.c >&5
| configure:4860: $? = 0
| configure:4864: test -z 
|                        || test ! -s conftest.err
| configure:4867: $? = 0
| configure:4870: test -s conftest.o
| configure:4873: $? = 0
| configure:4938: result: no
| configure:4950: checking for library containing strerror
| configure:4980: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:4986: $? = 0
| configure:4990: test -z 
|                        || test ! -s conftest.err
| configure:4993: $? = 0
| configure:4996: test -s conftest.exe
| configure:4999: $? = 0
| configure:5069: result: none required
| configure:5076: checking for inline
| configure:5097: gcc -c -g -O2  conftest.c >&5
| configure:5103: $? = 0
| configure:5107: test -z 
|                        || test ! -s conftest.err
| configure:5110: $? = 0
| configure:5113: test -s conftest.o
| configure:5116: $? = 0
| configure:5128: result: inline
| configure:5183: checking fcntl.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| configure:5201: $? = 0
| configure:5205: test -z 
|                        || test ! -s conftest.err
| configure:5208: $? = 0
| configure:5211: test -s conftest.o
| configure:5214: $? = 0
| configure:5224: result: yes
| configure:5228: checking fcntl.h presence
| configure:5238: gcc -E  conftest.c
| configure:5244: $? = 0
| configure:5264: result: yes
| configure:5299: checking for fcntl.h
| configure:5306: result: yes
| configure:5183: checking linux/fd.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| conftest.c:58:22: linux/fd.h: No such file or directory
| configure:5201: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <linux/fd.h>
| configure:5224: result: no
| configure:5228: checking linux/fd.h presence
| configure:5238: gcc -E  conftest.c
| conftest.c:24:22: linux/fd.h: No such file or directory
| configure:5244: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | /* end confdefs.h.  */
| | #include <linux/fd.h>
| configure:5264: result: no
| configure:5299: checking for linux/fd.h
| configure:5306: result: no
| configure:5174: checking for memory.h
| configure:5179: result: yes
| configure:5183: checking net/errno.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| conftest.c:59:23: net/errno.h: No such file or directory
| configure:5201: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <net/errno.h>
| configure:5224: result: no
| configure:5228: checking net/errno.h presence
| configure:5238: gcc -E  conftest.c
| conftest.c:25:23: net/errno.h: No such file or directory
| configure:5244: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | /* end confdefs.h.  */
| | #include <net/errno.h>
| configure:5264: result: no
| configure:5299: checking for net/errno.h
| configure:5306: result: no
| configure:5183: checking sgtty.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| conftest.c:59:19: sgtty.h: No such file or directory
| configure:5201: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <sgtty.h>
| configure:5224: result: no
| configure:5228: checking sgtty.h presence
| configure:5238: gcc -E  conftest.c
| conftest.c:25:19: sgtty.h: No such file or directory
| configure:5244: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | /* end confdefs.h.  */
| | #include <sgtty.h>
| configure:5264: result: no
| configure:5299: checking for sgtty.h
| configure:5306: result: no
| configure:5174: checking for string.h
| configure:5179: result: yes
| configure:5183: checking sys/param.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| configure:5201: $? = 0
| configure:5205: test -z 
|                        || test ! -s conftest.err
| configure:5208: $? = 0
| configure:5211: test -s conftest.o
| configure:5214: $? = 0
| configure:5224: result: yes
| configure:5228: checking sys/param.h presence
| configure:5238: gcc -E  conftest.c
| configure:5244: $? = 0
| configure:5264: result: yes
| configure:5299: checking for sys/param.h
| configure:5306: result: yes
| configure:5183: checking sys/device.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| conftest.c:61:24: sys/device.h: No such file or directory
| configure:5201: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <sys/device.h>
| configure:5224: result: no
| configure:5228: checking sys/device.h presence
| configure:5238: gcc -E  conftest.c
| conftest.c:27:24: sys/device.h: No such file or directory
| configure:5244: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | /* end confdefs.h.  */
| | #include <sys/device.h>
| configure:5264: result: no
| configure:5299: checking for sys/device.h
| configure:5306: result: no
| configure:5183: checking sys/gentape.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| conftest.c:61:25: sys/gentape.h: No such file or directory
| configure:5201: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <sys/gentape.h>
| configure:5224: result: no
| configure:5228: checking sys/gentape.h presence
| configure:5238: gcc -E  conftest.c
| conftest.c:27:25: sys/gentape.h: No such file or directory
| configure:5244: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | /* end confdefs.h.  */
| | #include <sys/gentape.h>
| configure:5264: result: no
| configure:5299: checking for sys/gentape.h
| configure:5306: result: no
| configure:5183: checking sys/inet.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| conftest.c:61:22: sys/inet.h: No such file or directory
| configure:5201: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <sys/inet.h>
| configure:5224: result: no
| configure:5228: checking sys/inet.h presence
| configure:5238: gcc -E  conftest.c
| conftest.c:27:22: sys/inet.h: No such file or directory
| configure:5244: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | /* end confdefs.h.  */
| | #include <sys/inet.h>
| configure:5264: result: no
| configure:5299: checking for sys/inet.h
| configure:5306: result: no
| configure:5183: checking sys/io/trioctl.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| conftest.c:61:28: sys/io/trioctl.h: No such file or directory
| configure:5201: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <sys/io/trioctl.h>
| configure:5224: result: no
| configure:5228: checking sys/io/trioctl.h presence
| configure:5238: gcc -E  conftest.c
| conftest.c:27:28: sys/io/trioctl.h: No such file or directory
| configure:5244: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | /* end confdefs.h.  */
| | #include <sys/io/trioctl.h>
| configure:5264: result: no
| configure:5299: checking for sys/io/trioctl.h
| configure:5306: result: no
| configure:5183: checking sys/mtio.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| configure:5201: $? = 0
| configure:5205: test -z 
|                        || test ! -s conftest.err
| configure:5208: $? = 0
| configure:5211: test -s conftest.o
| configure:5214: $? = 0
| configure:5224: result: yes
| configure:5228: checking sys/mtio.h presence
| configure:5238: gcc -E  conftest.c
| configure:5244: $? = 0
| configure:5264: result: yes
| configure:5299: checking for sys/mtio.h
| configure:5306: result: yes
| configure:5183: checking sys/time.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| configure:5201: $? = 0
| configure:5205: test -z 
|                        || test ! -s conftest.err
| configure:5208: $? = 0
| configure:5211: test -s conftest.o
| configure:5214: $? = 0
| configure:5224: result: yes
| configure:5228: checking sys/time.h presence
| configure:5238: gcc -E  conftest.c
| configure:5244: $? = 0
| configure:5264: result: yes
| configure:5299: checking for sys/time.h
| configure:5306: result: yes
| configure:5183: checking sys/tprintf.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| conftest.c:63:25: sys/tprintf.h: No such file or directory
| configure:5201: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <sys/tprintf.h>
| configure:5224: result: no
| configure:5228: checking sys/tprintf.h presence
| configure:5238: gcc -E  conftest.c
| conftest.c:29:25: sys/tprintf.h: No such file or directory
| configure:5244: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | /* end confdefs.h.  */
| | #include <sys/tprintf.h>
| configure:5264: result: no
| configure:5299: checking for sys/tprintf.h
| configure:5306: result: no
| configure:5183: checking sys/tape.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| conftest.c:63:22: sys/tape.h: No such file or directory
| configure:5201: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <sys/tape.h>
| configure:5224: result: no
| configure:5228: checking sys/tape.h presence
| configure:5238: gcc -E  conftest.c
| conftest.c:29:22: sys/tape.h: No such file or directory
| configure:5244: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | /* end confdefs.h.  */
| | #include <sys/tape.h>
| configure:5264: result: no
| configure:5299: checking for sys/tape.h
| configure:5306: result: no
| configure:5174: checking for unistd.h
| configure:5179: result: yes
| configure:5183: checking locale.h usability
| configure:5195: gcc -c -g -O2  conftest.c >&5
| configure:5201: $? = 0
| configure:5205: test -z 
|                        || test ! -s conftest.err
| configure:5208: $? = 0
| configure:5211: test -s conftest.o
| configure:5214: $? = 0
| configure:5224: result: yes
| configure:5228: checking locale.h presence
| configure:5238: gcc -E  conftest.c
| configure:5244: $? = 0
| configure:5264: result: yes
| configure:5299: checking for locale.h
| configure:5306: result: yes
| configure:5324: checking for sys/buf.h
| configure:5342: gcc -c -g -O2  conftest.c >&5
| conftest.c:35:21: sys/buf.h: No such file or directory
| configure:5348: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | /* end confdefs.h.  */
| | #if HAVE_SYS_PARAM_H
| | #include <sys/param.h>
| | #endif
| | 
| | #include <sys/buf.h>
| configure:5372: result: no
| configure:5384: checking for sys/wait.h that is POSIX.1 compatible
| configure:5415: gcc -c -g -O2  conftest.c >&5
| configure:5421: $? = 0
| configure:5425: test -z 
|                        || test ! -s conftest.err
| configure:5428: $? = 0
| configure:5431: test -s conftest.o
| configure:5434: $? = 0
| configure:5445: result: yes
| configure:5455: checking for stdbool.h that conforms to C99
| configure:5514: gcc -c -g -O2  conftest.c >&5
| configure:5520: $? = 0
| configure:5524: test -z 
|                        || test ! -s conftest.err
| configure:5527: $? = 0
| configure:5530: test -s conftest.o
| configure:5533: $? = 0
| configure:5544: result: yes
| configure:5546: checking for _Bool
| configure:5570: gcc -c -g -O2  conftest.c >&5
| configure:5576: $? = 0
| configure:5580: test -z 
|                        || test ! -s conftest.err
| configure:5583: $? = 0
| configure:5586: test -s conftest.o
| configure:5589: $? = 0
| configure:5600: result: yes
| configure:5646: checking for dirent.h that defines DIR
| configure:5670: gcc -c -g -O2  conftest.c >&5
| configure:5676: $? = 0
| configure:5680: test -z 
|                        || test ! -s conftest.err
| configure:5683: $? = 0
| configure:5686: test -s conftest.o
| configure:5689: $? = 0
| configure:5700: result: yes
| configure:5713: checking for library containing opendir
| configure:5743: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:5749: $? = 0
| configure:5753: test -z 
|                        || test ! -s conftest.err
| configure:5756: $? = 0
| configure:5759: test -s conftest.exe
| configure:5762: $? = 0
| configure:5832: result: none required
| configure:5968: checking whether sys/types.h defines makedev
| configure:5989: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:5995: $? = 0
| configure:5999: test -z 
|                        || test ! -s conftest.err
| configure:6002: $? = 0
| configure:6005: test -s conftest.exe
| configure:6008: $? = 0
| configure:6021: result: yes
| configure:6322: checking whether stat file-mode macros are broken
| configure:6370: result: no
| configure:6380: checking for ANSI C header files
| configure:6536: result: yes
| configure:6547: checking for struct stat.st_blksize
| configure:6570: gcc -c -g -O2  conftest.c >&5
| configure:6576: $? = 0
| configure:6580: test -z 
|                        || test ! -s conftest.err
| configure:6583: $? = 0
| configure:6586: test -s conftest.o
| configure:6589: $? = 0
| configure:6646: result: yes
| configure:6662: checking for struct stat.st_blocks
| configure:6685: gcc -c -g -O2  conftest.c >&5
| configure:6691: $? = 0
| configure:6695: test -z 
|                        || test ! -s conftest.err
| configure:6698: $? = 0
| configure:6701: test -s conftest.o
| configure:6704: $? = 0
| configure:6761: result: yes
| configure:6786: checking for st_fstype string in struct stat
| configure:6808: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:45: error: structure has no member named `st_fstype'
| configure:6814: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | /* end confdefs.h.  */
| | #include <sys/types.h>
| | #include <sys/stat.h>
| | int
| | main ()
| | {
| | struct stat s; s.st_fstype[0] = 'x';
| |   ;
| |   return 0;
| | }
| configure:6839: result: no
| configure:6849: checking return type of signal handlers
| configure:6880: gcc -c -g -O2  conftest.c >&5
| configure:6886: $? = 0
| configure:6890: test -z 
|                        || test ! -s conftest.err
| configure:6893: $? = 0
| configure:6896: test -s conftest.o
| configure:6899: $? = 0
| configure:6910: result: void
| configure:6918: checking for mode_t
| configure:6942: gcc -c -g -O2  conftest.c >&5
| configure:6948: $? = 0
| configure:6952: test -z 
|                        || test ! -s conftest.err
| configure:6955: $? = 0
| configure:6958: test -s conftest.o
| configure:6961: $? = 0
| configure:6972: result: yes
| configure:6984: checking for pid_t
| configure:7008: gcc -c -g -O2  conftest.c >&5
| configure:7014: $? = 0
| configure:7018: test -z 
|                        || test ! -s conftest.err
| configure:7021: $? = 0
| configure:7024: test -s conftest.o
| configure:7027: $? = 0
| configure:7038: result: yes
| configure:7050: checking for off_t
| configure:7074: gcc -c -g -O2  conftest.c >&5
| configure:7080: $? = 0
| configure:7084: test -z 
|                        || test ! -s conftest.err
| configure:7087: $? = 0
| configure:7090: test -s conftest.o
| configure:7093: $? = 0
| configure:7104: result: yes
| configure:7116: checking for size_t
| configure:7140: gcc -c -g -O2  conftest.c >&5
| configure:7146: $? = 0
| configure:7150: test -z 
|                        || test ! -s conftest.err
| configure:7153: $? = 0
| configure:7156: test -s conftest.o
| configure:7159: $? = 0
| configure:7170: result: yes
| configure:7182: checking for uid_t in sys/types.h
| configure:7205: result: yes
| configure:7220: checking for major_t
| configure:7244: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:78: error: `major_t' undeclared (first use in this function)
| conftest.c:78: error: (Each undeclared identifier is reported only once
| conftest.c:78: error: for each function it appears in.)
| conftest.c:78: error: parse error before ')' token
| configure:7250: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | if ((major_t *) 0)
| |   return 0;
| | if (sizeof (major_t))
| |   return 0;
| |   ;
| |   return 0;
| | }
| configure:7274: result: no
| configure:7286: checking for minor_t
| configure:7310: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:79: error: `minor_t' undeclared (first use in this function)
| conftest.c:79: error: (Each undeclared identifier is reported only once
| conftest.c:79: error: for each function it appears in.)
| conftest.c:79: error: parse error before ')' token
| configure:7316: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | if ((minor_t *) 0)
| |   return 0;
| | if (sizeof (minor_t))
| |   return 0;
| |   ;
| |   return 0;
| | }
| configure:7340: result: no
| configure:7352: checking for dev_t
| configure:7376: gcc -c -g -O2  conftest.c >&5
| configure:7382: $? = 0
| configure:7386: test -z 
|                        || test ! -s conftest.err
| configure:7389: $? = 0
| configure:7392: test -s conftest.o
| configure:7395: $? = 0
| configure:7406: result: yes
| configure:7418: checking for ino_t
| configure:7442: gcc -c -g -O2  conftest.c >&5
| configure:7448: $? = 0
| configure:7452: test -z 
|                        || test ! -s conftest.err
| configure:7455: $? = 0
| configure:7458: test -s conftest.o
| configure:7461: $? = 0
| configure:7472: result: yes
| configure:7486: checking for ssize_t
| configure:7507: gcc -c -g -O2  conftest.c >&5
| configure:7513: $? = 0
| configure:7517: test -z 
|                        || test ! -s conftest.err
| configure:7520: $? = 0
| configure:7523: test -s conftest.o
| configure:7526: $? = 0
| configure:7537: result: yes
| configure:7548: checking for inttypes.h
| configure:7570: gcc -c -g -O2  conftest.c >&5
| configure:7576: $? = 0
| configure:7580: test -z 
|                        || test ! -s conftest.err
| configure:7583: $? = 0
| configure:7586: test -s conftest.o
| configure:7589: $? = 0
| configure:7600: result: yes
| configure:7611: checking for stdint.h
| configure:7633: gcc -c -g -O2  conftest.c >&5
| configure:7639: $? = 0
| configure:7643: test -z 
|                        || test ! -s conftest.err
| configure:7646: $? = 0
| configure:7649: test -s conftest.o
| configure:7652: $? = 0
| configure:7663: result: yes
| configure:7674: checking for long long
| configure:7696: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:7702: $? = 0
| configure:7706: test -z 
|                        || test ! -s conftest.err
| configure:7709: $? = 0
| configure:7712: test -s conftest.exe
| configure:7715: $? = 0
| configure:7727: result: yes
| configure:7759: checking for inttypes.h
| configure:7781: gcc -c -g -O2  conftest.c >&5
| configure:7787: $? = 0
| configure:7791: test -z 
|                        || test ! -s conftest.err
| configure:7794: $? = 0
| configure:7797: test -s conftest.o
| configure:7800: $? = 0
| configure:7811: result: yes
| configure:7822: checking for stdint.h
| configure:7844: gcc -c -g -O2  conftest.c >&5
| configure:7850: $? = 0
| configure:7854: test -z 
|                        || test ! -s conftest.err
| configure:7857: $? = 0
| configure:7860: test -s conftest.o
| configure:7863: $? = 0
| configure:7874: result: yes
| configure:7885: checking for unsigned long long
| configure:7907: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:7913: $? = 0
| configure:7917: test -z 
|                        || test ! -s conftest.err
| configure:7920: $? = 0
| configure:7923: test -s conftest.exe
| configure:7926: $? = 0
| configure:7938: result: yes
| configure:7973: checking for working alloca.h
| configure:7994: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:8000: $? = 0
| configure:8004: test -z 
|                        || test ! -s conftest.err
| configure:8007: $? = 0
| configure:8010: test -s conftest.exe
| configure:8013: $? = 0
| configure:8025: result: yes
| configure:8035: checking for alloca
| configure:8076: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:8082: $? = 0
| configure:8086: test -z 
|                        || test ! -s conftest.err
| configure:8089: $? = 0
| configure:8092: test -s conftest.exe
| configure:8095: $? = 0
| configure:8107: result: yes
| configure:8336: checking for stdlib.h
| configure:8341: result: yes
| configure:8481: checking for GNU libc compatible malloc
| configure:8510: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:8513: $? = 0
| configure:8515: ./conftest.exe
| configure:8518: $? = 0
| configure:8532: result: yes
| configure:8548: checking for long double
| configure:8608: result: yes
| configure:8619: checking whether clearerr_unlocked is declared
| configure:8643: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:94: error: `clearerr_unlocked' undeclared (first use in this 
function)
| conftest.c:94: error: (Each undeclared identifier is reported only once
| conftest.c:94: error: for each function it appears in.)
| configure:8649: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef clearerr_unlocked
| |   char *p = (char *) clearerr_unlocked;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:8673: result: no
| configure:8693: checking whether feof_unlocked is declared
| configure:8717: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:95: error: `feof_unlocked' undeclared (first use in this function)
| conftest.c:95: error: (Each undeclared identifier is reported only once
| conftest.c:95: error: for each function it appears in.)
| configure:8723: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef feof_unlocked
| |   char *p = (char *) feof_unlocked;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:8747: result: no
| configure:8767: checking whether ferror_unlocked is declared
| configure:8791: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:96: error: `ferror_unlocked' undeclared (first use in this 
function)
| conftest.c:96: error: (Each undeclared identifier is reported only once
| conftest.c:96: error: for each function it appears in.)
| configure:8797: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef ferror_unlocked
| |   char *p = (char *) ferror_unlocked;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:8821: result: no
| configure:8841: checking whether fflush_unlocked is declared
| configure:8865: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:97: error: `fflush_unlocked' undeclared (first use in this 
function)
| conftest.c:97: error: (Each undeclared identifier is reported only once
| conftest.c:97: error: for each function it appears in.)
| configure:8871: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fflush_unlocked
| |   char *p = (char *) fflush_unlocked;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:8895: result: no
| configure:8915: checking whether fgets_unlocked is declared
| configure:8939: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:98: error: `fgets_unlocked' undeclared (first use in this function)
| conftest.c:98: error: (Each undeclared identifier is reported only once
| conftest.c:98: error: for each function it appears in.)
| configure:8945: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fgets_unlocked
| |   char *p = (char *) fgets_unlocked;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:8969: result: no
| configure:8989: checking whether fputc_unlocked is declared
| configure:9013: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:99: error: `fputc_unlocked' undeclared (first use in this function)
| conftest.c:99: error: (Each undeclared identifier is reported only once
| conftest.c:99: error: for each function it appears in.)
| configure:9019: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fputc_unlocked
| |   char *p = (char *) fputc_unlocked;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:9043: result: no
| configure:9063: checking whether fputs_unlocked is declared
| configure:9087: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:100: error: `fputs_unlocked' undeclared (first use in this 
function)
| conftest.c:100: error: (Each undeclared identifier is reported only once
| conftest.c:100: error: for each function it appears in.)
| configure:9093: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fputs_unlocked
| |   char *p = (char *) fputs_unlocked;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:9117: result: no
| configure:9137: checking whether fread_unlocked is declared
| configure:9161: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:101: error: `fread_unlocked' undeclared (first use in this 
function)
| conftest.c:101: error: (Each undeclared identifier is reported only once
| conftest.c:101: error: for each function it appears in.)
| configure:9167: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fread_unlocked
| |   char *p = (char *) fread_unlocked;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:9191: result: no
| configure:9211: checking whether fwrite_unlocked is declared
| configure:9235: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:102: error: `fwrite_unlocked' undeclared (first use in this 
function)
| conftest.c:102: error: (Each undeclared identifier is reported only once
| conftest.c:102: error: for each function it appears in.)
| configure:9241: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fwrite_unlocked
| |   char *p = (char *) fwrite_unlocked;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:9265: result: no
| configure:9285: checking whether getc_unlocked is declared
| configure:9309: gcc -c -g -O2  conftest.c >&5
| configure:9315: $? = 0
| configure:9319: test -z 
|                        || test ! -s conftest.err
| configure:9322: $? = 0
| configure:9325: test -s conftest.o
| configure:9328: $? = 0
| configure:9339: result: yes
| configure:9359: checking whether getchar_unlocked is declared
| configure:9383: gcc -c -g -O2  conftest.c >&5
| configure:9389: $? = 0
| configure:9393: test -z 
|                        || test ! -s conftest.err
| configure:9396: $? = 0
| configure:9399: test -s conftest.o
| configure:9402: $? = 0
| configure:9413: result: yes
| configure:9433: checking whether putc_unlocked is declared
| configure:9457: gcc -c -g -O2  conftest.c >&5
| configure:9463: $? = 0
| configure:9467: test -z 
|                        || test ! -s conftest.err
| configure:9470: $? = 0
| configure:9473: test -s conftest.o
| configure:9476: $? = 0
| configure:9487: result: yes
| configure:9507: checking whether putchar_unlocked is declared
| configure:9531: gcc -c -g -O2  conftest.c >&5
| configure:9537: $? = 0
| configure:9541: test -z 
|                        || test ! -s conftest.err
| configure:9544: $? = 0
| configure:9547: test -s conftest.o
| configure:9550: $? = 0
| configure:9561: result: yes
| configure:9666: checking for flockfile
| configure:9723: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:9729: $? = 0
| configure:9733: test -z 
|                        || test ! -s conftest.err
| configure:9736: $? = 0
| configure:9739: test -s conftest.exe
| configure:9742: $? = 0
| configure:9754: result: yes
| configure:9666: checking for funlockfile
| configure:9723: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:9729: $? = 0
| configure:9733: test -z 
|                        || test ! -s conftest.err
| configure:9736: $? = 0
| configure:9739: test -s conftest.exe
| configure:9742: $? = 0
| configure:9754: result: yes
| configure:9666: checking for isascii
| configure:9723: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:9729: $? = 0
| configure:9733: test -z 
|                        || test ! -s conftest.err
| configure:9736: $? = 0
| configure:9739: test -s conftest.exe
| configure:9742: $? = 0
| configure:9754: result: yes
| configure:9666: checking for gettimeofday
| configure:9723: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:9729: $? = 0
| configure:9733: test -z 
|                        || test ! -s conftest.err
| configure:9736: $? = 0
| configure:9739: test -s conftest.exe
| configure:9742: $? = 0
| configure:9754: result: yes
| configure:9666: checking for setlocale
| configure:9723: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:9729: $? = 0
| configure:9733: test -z 
|                        || test ! -s conftest.err
| configure:9736: $? = 0
| configure:9739: test -s conftest.exe
| configure:9742: $? = 0
| configure:9754: result: yes
| configure:9666: checking for iswprint
| configure:9723: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:9729: $? = 0
| configure:9733: test -z 
|                        || test ! -s conftest.err
| configure:9736: $? = 0
| configure:9739: test -s conftest.exe
| configure:9742: $? = 0
| configure:9754: result: yes
| configure:9666: checking for mbsinit
| configure:9723: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:9729: $? = 0
| configure:9733: test -z 
|                        || test ! -s conftest.err
| configure:9736: $? = 0
| configure:9739: test -s conftest.exe
| configure:9742: $? = 0
| configure:9754: result: yes
| configure:9793: checking features.h usability
| configure:9805: gcc -c -g -O2  conftest.c >&5
| configure:9811: $? = 0
| configure:9815: test -z 
|                        || test ! -s conftest.err
| configure:9818: $? = 0
| configure:9821: test -s conftest.o
| configure:9824: $? = 0
| configure:9834: result: yes
| configure:9838: checking features.h presence
| configure:9848: gcc -E  conftest.c
| configure:9854: $? = 0
| configure:9874: result: yes
| configure:9909: checking for features.h
| configure:9916: result: yes
| configure:9793: checking linewrap.h usability
| configure:9805: gcc -c -g -O2  conftest.c >&5
| conftest.c:113:22: linewrap.h: No such file or directory
| configure:9811: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <linewrap.h>
| configure:9834: result: no
| configure:9838: checking linewrap.h presence
| configure:9848: gcc -E  conftest.c
| conftest.c:79:22: linewrap.h: No such file or directory
| configure:9854: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | /* end confdefs.h.  */
| | #include <linewrap.h>
| configure:9874: result: no
| configure:9909: checking for linewrap.h
| configure:9916: result: no
| configure:9784: checking for unistd.h
| configure:9789: result: yes
| configure:9784: checking for fcntl.h
| configure:9789: result: yes
| configure:9784: checking for sys/param.h
| configure:9789: result: yes
| configure:9784: checking for sys/time.h
| configure:9789: result: yes
| configure:9793: checking stddef.h usability
| configure:9805: gcc -c -g -O2  conftest.c >&5
| configure:9811: $? = 0
| configure:9815: test -z 
|                        || test ! -s conftest.err
| configure:9818: $? = 0
| configure:9821: test -s conftest.o
| configure:9824: $? = 0
| configure:9834: result: yes
| configure:9838: checking stddef.h presence
| configure:9848: gcc -E  conftest.c
| configure:9854: $? = 0
| configure:9874: result: yes
| configure:9909: checking for stddef.h
| configure:9916: result: yes
| configure:9784: checking for stdlib.h
| configure:9789: result: yes
| configure:9784: checking for string.h
| configure:9789: result: yes
| configure:9793: checking wchar.h usability
| configure:9805: gcc -c -g -O2  conftest.c >&5
| configure:9811: $? = 0
| configure:9815: test -z 
|                        || test ! -s conftest.err
| configure:9818: $? = 0
| configure:9821: test -s conftest.o
| configure:9824: $? = 0
| configure:9834: result: yes
| configure:9838: checking wchar.h presence
| configure:9848: gcc -E  conftest.c
| configure:9854: $? = 0
| configure:9874: result: yes
| configure:9909: checking for wchar.h
| configure:9916: result: yes
| configure:9793: checking wctype.h usability
| configure:9805: gcc -c -g -O2  conftest.c >&5
| configure:9811: $? = 0
| configure:9815: test -z 
|                        || test ! -s conftest.err
| configure:9818: $? = 0
| configure:9821: test -s conftest.o
| configure:9824: $? = 0
| configure:9834: result: yes
| configure:9838: checking wctype.h presence
| configure:9848: gcc -E  conftest.c
| configure:9854: $? = 0
| configure:9874: result: yes
| configure:9909: checking for wctype.h
| configure:9916: result: yes
| configure:9793: checking utime.h usability
| configure:9805: gcc -c -g -O2  conftest.c >&5
| configure:9811: $? = 0
| configure:9815: test -z 
|                        || test ! -s conftest.err
| configure:9818: $? = 0
| configure:9821: test -s conftest.o
| configure:9824: $? = 0
| configure:9834: result: yes
| configure:9838: checking utime.h presence
| configure:9848: gcc -E  conftest.c
| configure:9854: $? = 0
| configure:9874: result: yes
| configure:9909: checking for utime.h
| configure:9916: result: yes
| configure:9940: checking for d_ino member in directory struct
| configure:9977: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:9983: $? = 0
| configure:9987: test -z 
|                        || test ! -s conftest.err
| configure:9990: $? = 0
| configure:9993: test -s conftest.exe
| configure:9996: $? = 0
| configure:10010: result: yes
| configure:10022: checking whether system is Windows or MSDOS
| configure:10046: gcc -c -g -O2  conftest.c >&5
| configure:10052: $? = 0
| configure:10056: test -z 
|                        || test ! -s conftest.err
| configure:10059: $? = 0
| configure:10062: test -s conftest.o
| configure:10065: $? = 0
| configure:10077: result: yes
| configure:10106: checking for long file names
| configure:10145: result: yes
| configure:10166: checking for unistd.h
| configure:10171: result: yes
| configure:10311: checking for working chown
| configure:10350: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:10353: $? = 0
| configure:10355: ./conftest.exe
| configure:10358: $? = 0
| configure:10374: result: yes
| configure:10385: checking whether chown(2) dereferences symlinks
| configure:10425: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:10428: $? = 0
| configure:10430: ./conftest.exe
| configure:10433: $? = 0
| configure:10449: result: yes
| configure:10466: checking whether strerror_r is declared
| configure:10490: gcc -c -g -O2  conftest.c >&5
| configure:10496: $? = 0
| configure:10500: test -z 
|                        || test ! -s conftest.err
| configure:10503: $? = 0
| configure:10506: test -s conftest.o
| configure:10509: $? = 0
| configure:10520: result: yes
| configure:10542: checking for strerror_r
| configure:10599: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:10605: $? = 0
| configure:10609: test -z 
|                        || test ! -s conftest.err
| configure:10612: $? = 0
| configure:10615: test -s conftest.exe
| configure:10618: $? = 0
| configure:10630: result: yes
| configure:10640: checking whether strerror_r returns char *
| configure:10668: gcc -c -g -O2  conftest.c >&5
| configure:10674: $? = 0
| configure:10678: test -z 
|                        || test ! -s conftest.err
| configure:10681: $? = 0
| configure:10684: test -s conftest.o
| configure:10687: $? = 0
| configure:10747: result: yes
| configure:10769: checking for an ANSI C-conforming const
| configure:10836: gcc -c -g -O2  conftest.c >&5
| configure:10842: $? = 0
| configure:10846: test -z 
|                        || test ! -s conftest.err
| configure:10849: $? = 0
| configure:10852: test -s conftest.o
| configure:10855: $? = 0
| configure:10866: result: yes
| configure:10876: checking for mbstate_t
| configure:10898: gcc -c -g -O2  conftest.c >&5
| configure:10904: $? = 0
| configure:10908: test -z 
|                        || test ! -s conftest.err
| configure:10911: $? = 0
| configure:10914: test -s conftest.o
| configure:10917: $? = 0
| configure:10928: result: yes
| configure:10951: checking whether getcwd (NULL, 0) allocates memory for result
| configure:10986: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:10989: $? = 0
| configure:10991: ./conftest.exe
| configure:10994: $? = 0
| configure:11008: result: yes
| configure:11012: checking whether getcwd is declared
| configure:11036: gcc -c -g -O2  conftest.c >&5
| configure:11042: $? = 0
| configure:11046: test -z 
|                        || test ! -s conftest.err
| configure:11049: $? = 0
| configure:11052: test -s conftest.o
| configure:11055: $? = 0
| configure:11066: result: yes
| configure:11085: checking whether time.h and sys/time.h may both be included
| configure:11110: gcc -c -g -O2  conftest.c >&5
| configure:11116: $? = 0
| configure:11120: test -z 
|                        || test ! -s conftest.err
| configure:11123: $? = 0
| configure:11126: test -s conftest.o
| configure:11129: $? = 0
| configure:11140: result: yes
| configure:11176: checking for struct timespec
| configure:11208: gcc -c -g -O2  conftest.c >&5
| configure:11214: $? = 0
| configure:11218: test -z 
|                        || test ! -s conftest.err
| configure:11221: $? = 0
| configure:11224: test -s conftest.o
| configure:11227: $? = 0
| configure:11239: result: yes
| configure:11250: checking for nanoseconds member of struct stat.st_mtim
| configure:11281: gcc -c -g -O2  -DST_MTIM_NSEC=tv_nsec conftest.c >&5
| configure:11287: $? = 0
| configure:11291: test -z 
|                        || test ! -s conftest.err
| configure:11294: $? = 0
| configure:11297: test -s conftest.o
| configure:11300: $? = 0
| configure:11312: result: tv_nsec
| configure:11327: checking whether nanosleep is declared
| configure:11352: gcc -c -g -O2  conftest.c >&5
| configure:11358: $? = 0
| configure:11362: test -z 
|                        || test ! -s conftest.err
| configure:11365: $? = 0
| configure:11368: test -s conftest.o
| configure:11371: $? = 0
| configure:11382: result: yes
| configure:11406: checking whether struct tm is in sys/time.h or time.h
| configure:11429: gcc -c -g -O2  conftest.c >&5
| configure:11435: $? = 0
| configure:11439: test -z 
|                        || test ! -s conftest.err
| configure:11442: $? = 0
| configure:11445: test -s conftest.o
| configure:11448: $? = 0
| configure:11459: result: time.h
| configure:11480: checking for library containing clock_gettime
| configure:11510: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:11516: $? = 0
| configure:11520: test -z 
|                        || test ! -s conftest.err
| configure:11523: $? = 0
| configure:11526: test -s conftest.exe
| configure:11529: $? = 0
| configure:11599: result: none required
| configure:11613: checking for clock_gettime
| configure:11670: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:11676: $? = 0
| configure:11680: test -z 
|                        || test ! -s conftest.err
| configure:11683: $? = 0
| configure:11686: test -s conftest.exe
| configure:11689: $? = 0
| configure:11701: result: yes
| configure:11613: checking for clock_settime
| configure:11670: gcc -o conftest.exe -g -O2   conftest.c  >&5
| /cygdrive/c/windows/temp/ccCFh7tX.o: In function `main':
| /home/eblake/tar-1.15.1/conftest.c:145: undefined reference to 
`_clock_settime'
| /home/eblake/tar-1.15.1/conftest.c:144: undefined reference to 
`_clock_settime'
| collect2: ld returned 1 exit status
| configure:11676: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | /* end confdefs.h.  */
| | /* Define clock_settime to an innocuous variant, in case <limits.h> 
declares clock_settime.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define clock_settime innocuous_clock_settime
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char clock_settime (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef clock_settime
| | 
| | /* Override any gcc2 internal prototype to avoid an error.  */
| | #ifdef __cplusplus
| | extern "C"
| | {
| | #endif
| | /* We use char because int might match the return type of a gcc2
| |    builtin and then its argument prototype would still apply.  */
| | char clock_settime ();
| | /* 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_clock_settime) || defined (__stub___clock_settime)
| | choke me
| | #else
| | char (*f) () = clock_settime;
| | #endif
| | #ifdef __cplusplus
| | }
| | #endif
| | 
| | int
| | main ()
| | {
| | return f != clock_settime;
| |   ;
| |   return 0;
| | }
| configure:11701: result: no
| configure:11714: checking for struct tm.tm_gmtoff
| configure:11738: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:111: error: structure has no member named `tm_gmtoff'
| configure:11744: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | /* end confdefs.h.  */
| | #include <time.h>
| | 
| | int
| | main ()
| | {
| | static struct tm ac_aggr;
| | if (ac_aggr.tm_gmtoff)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:11783: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:111: error: structure has no member named `tm_gmtoff'
| configure:11789: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | /* end confdefs.h.  */
| | #include <time.h>
| | 
| | int
| | main ()
| | {
| | static struct tm ac_aggr;
| | if (sizeof ac_aggr.tm_gmtoff)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:11815: result: no
| configure:11833: checking for unsigned long long
| configure:11886: result: yes
| configure:11936: checking for nl_langinfo and CODESET
| configure:11957: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:11963: $? = 0
| configure:11967: test -z 
|                        || test ! -s conftest.err
| configure:11970: $? = 0
| configure:11973: test -s conftest.exe
| configure:11976: $? = 0
| configure:11989: result: yes
| configure:12011: checking build system type
| configure:12029: result: i686-pc-cygwin
| configure:12037: checking host system type
| configure:12051: result: i686-pc-cygwin
| configure:12060: checking whether we are using the GNU C Library 2.1 or newer
| configure:12091: result: no
| configure:12104: checking for stdlib.h
| configure:12109: result: yes
| configure:12104: checking for sys/time.h
| configure:12109: result: yes
| configure:12104: checking for unistd.h
| configure:12109: result: yes
| configure:12253: checking for alarm
| configure:12310: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:12316: $? = 0
| configure:12320: test -z 
|                        || test ! -s conftest.err
| configure:12323: $? = 0
| configure:12326: test -s conftest.exe
| configure:12329: $? = 0
| configure:12341: result: yes
| configure:12351: checking for working mktime
| configure:12527: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:12530: $? = 0
| configure:12532: ./conftest.exe
| configure:12535: $? = 1
| configure: program exited with status 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | /* end confdefs.h.  */
| | /* Test program from Paul Eggert and Tony Leneis.  */
| | #if TIME_WITH_SYS_TIME
| | # include <sys/time.h>
| | # include <time.h>
| | #else
| | # if HAVE_SYS_TIME_H
| | #  include <sys/time.h>
| | # else
| | #  include <time.h>
| | # endif
| | #endif
| | 
| | #if HAVE_STDLIB_H
| | # include <stdlib.h>
| | #endif
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | 
| | #if !HAVE_ALARM
| | # define alarm(X) /* empty */
| | #endif
| | 
| | /* Work around redefinition to rpl_putenv by other config tests.  */
| | #undef putenv
| | 
| | static time_t time_t_max;
| | static time_t time_t_min;
| | 
| | /* Values we'll use to set the TZ environment variable.  */
| | static char *tz_strings[] = {
| |   (char *) 0, "TZ=GMT0", "TZ=JST-9",
| |   "TZ=EST+3EDT+2,M10.1.0/00:00:00,M2.3.0/00:00:00"
| | };
| | #define N_STRINGS (sizeof (tz_strings) / sizeof (tz_strings[0]))
| | 
| | /* Fail if mktime fails to convert a date in the spring-forward gap.
| |    Based on a problem report from Andreas Jaeger.  */
| | static void
| | spring_forward_gap ()
| | {
| |   /* glibc (up to about 1998-10-07) failed this test. */
| |   struct tm tm;
| | 
| |   /* Use the portable POSIX.1 specification "TZ=PST8PDT,M4.1.0,M10.5.0"
| |      instead of "TZ=America/Vancouver" in order to detect the bug even
| |      on systems that don't support the Olson extension, or don't have the
| |      full zoneinfo tables installed.  */
| |   putenv ("TZ=PST8PDT,M4.1.0,M10.5.0");
| | 
| |   tm.tm_year = 98;
| |   tm.tm_mon = 3;
| |   tm.tm_mday = 5;
| |   tm.tm_hour = 2;
| |   tm.tm_min = 0;
| |   tm.tm_sec = 0;
| |   tm.tm_isdst = -1;
| |   if (mktime (&tm) == (time_t)-1)
| |     exit (1);
| | }
| | 
| | static void
| | mktime_test1 (now)
| |      time_t now;
| | {
| |   struct tm *lt;
| |   if ((lt = localtime (&now)) && mktime (lt) != now)
| |     exit (1);
| | }
| | 
| | static void
| | mktime_test (now)
| |      time_t now;
| | {
| |   mktime_test1 (now);
| |   mktime_test1 ((time_t) (time_t_max - now));
| |   mktime_test1 ((time_t) (time_t_min + now));
| | }
| | 
| | static void
| | irix_6_4_bug ()
| | {
| |   /* Based on code from Ariel Faigon.  */
| |   struct tm tm;
| |   tm.tm_year = 96;
| |   tm.tm_mon = 3;
| |   tm.tm_mday = 0;
| |   tm.tm_hour = 0;
| |   tm.tm_min = 0;
| |   tm.tm_sec = 0;
| |   tm.tm_isdst = -1;
| |   mktime (&tm);
| |   if (tm.tm_mon != 2 || tm.tm_mday != 31)
| |     exit (1);
| | }
| | 
| | static void
| | bigtime_test (j)
| |      int j;
| | {
| |   struct tm tm;
| |   time_t now;
| |   tm.tm_year = tm.tm_mon = tm.tm_mday = tm.tm_hour = tm.tm_min = tm.tm_sec 
= j;
| |   now = mktime (&tm);
| |   if (now != (time_t) -1)
| |     {
| |       struct tm *lt = localtime (&now);
| |       if (! (lt
| |          && lt->tm_year == tm.tm_year
| |          && lt->tm_mon == tm.tm_mon
| |          && lt->tm_mday == tm.tm_mday
| |          && lt->tm_hour == tm.tm_hour
| |          && lt->tm_min == tm.tm_min
| |          && lt->tm_sec == tm.tm_sec
| |          && lt->tm_yday == tm.tm_yday
| |          && lt->tm_wday == tm.tm_wday
| |          && ((lt->tm_isdst < 0 ? -1 : 0 < lt->tm_isdst)
| |               == (tm.tm_isdst < 0 ? -1 : 0 < tm.tm_isdst))))
| |     exit (1);
| |     }
| | }
| | 
| | int
| | main ()
| | {
| |   time_t t, delta;
| |   int i, j;
| | 
| |   /* This test makes some buggy mktime implementations loop.
| |      Give up after 60 seconds; a mktime slower than that
| |      isn't worth using anyway.  */
| |   alarm (60);
| | 
| |   for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2)
| |     continue;
| |   time_t_max--;
| |   if ((time_t) -1 < 0)
| |     for (time_t_min = -1; (time_t) (time_t_min * 2) < 0; time_t_min *= 2)
| |       continue;
| |   delta = time_t_max / 997; /* a suitable prime number */
| |   for (i = 0; i < N_STRINGS; i++)
| |     {
| |       if (tz_strings[i])
| |     putenv (tz_strings[i]);
| | 
| |       for (t = 0; t <= time_t_max - delta; t += delta)
| |     mktime_test (t);
| |       mktime_test ((time_t) 1);
| |       mktime_test ((time_t) (60 * 60));
| |       mktime_test ((time_t) (60 * 60 * 24));
| | 
| |       for (j = 1; 0 < j; j *= 2)
| |     bigtime_test (j);
| |       bigtime_test (j - 1);
| |     }
| |   irix_6_4_bug ();
| |   spring_forward_gap ();
| |   exit (0);
| | }
| configure:12549: result: no
| configure:12586: checking whether closedir returns void
| configure:12615: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:12618: $? = 0
| configure:12620: ./conftest.exe
| configure:12623: $? = 0
| configure:12637: result: no
| configure:12647: checking whether utime accepts a null argument
| configure:12678: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:12681: $? = 0
| configure:12683: ./conftest.exe
| configure:12686: $? = 0
| configure:12701: result: yes
| configure:12730: checking for struct utimbuf
| configure:12765: gcc -c -g -O2  conftest.c >&5
| configure:12771: $? = 0
| configure:12775: test -z 
|                        || test ! -s conftest.err
| configure:12778: $? = 0
| configure:12781: test -s conftest.o
| configure:12784: $? = 0
| configure:12796: result: yes
| configure:12821: checking whether strtoimax is declared
| configure:12845: gcc -c -g -O2  conftest.c >&5
| configure:12851: $? = 0
| configure:12855: test -z 
|                        || test ! -s conftest.err
| configure:12858: $? = 0
| configure:12861: test -s conftest.o
| configure:12864: $? = 0
| configure:12875: result: yes
| configure:12891: checking whether strtoumax is declared
| configure:12915: gcc -c -g -O2  conftest.c >&5
| configure:12921: $? = 0
| configure:12925: test -z 
|                        || test ! -s conftest.err
| configure:12928: $? = 0
| configure:12931: test -s conftest.o
| configure:12934: $? = 0
| configure:12945: result: yes
| configure:13033: checking whether program_invocation_name is declared
| configure:13058: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:124: error: `program_invocation_name' undeclared (first use in 
this function)
| conftest.c:124: error: (Each undeclared identifier is reported only once
| conftest.c:124: error: for each function it appears in.)
| configure:13064: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | /* end confdefs.h.  */
| | #include <errno.h>
| | 
| | int
| | main ()
| | {
| | #ifndef program_invocation_name
| |   char *p = (char *) program_invocation_name;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:13088: result: no
| configure:13104: checking whether program_invocation_short_name is declared
| configure:13129: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:125: error: `program_invocation_short_name' undeclared (first use 
in this function)
| conftest.c:125: error: (Each undeclared identifier is reported only once
| conftest.c:125: error: for each function it appears in.)
| configure:13135: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | /* end confdefs.h.  */
| | #include <errno.h>
| | 
| | int
| | main ()
| | {
| | #ifndef program_invocation_short_name
| |   char *p = (char *) program_invocation_short_name;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:13159: result: no
| configure:13216: checking for pathconf
| configure:13273: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:13279: $? = 0
| configure:13283: test -z 
|                        || test ! -s conftest.err
| configure:13286: $? = 0
| configure:13289: test -s conftest.exe
| configure:13292: $? = 0
| configure:13304: result: yes
| configure:13473: checking for error_at_line
| configure:13494: gcc -o conftest.exe -g -O2   conftest.c  >&5
| /cygdrive/c/windows/temp/cclmrArq.o: In function `main':
| /home/eblake/tar-1.15.1/conftest.c:159: undefined reference to 
`_error_at_line'
| collect2: ld returned 1 exit status
| configure:13500: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | error_at_line (0, 0, "", 0, "");
| |   ;
| |   return 0;
| | }
| configure:13525: result: no
| configure:13568: checking for struct stat.st_blocks
| configure:13667: result: yes
| configure:13716: checking for working GNU fnmatch
| configure:13757: gcc -o conftest.exe -g -O2   conftest.c  >&5
| conftest.c: In function `main':
| conftest.c:141: error: `FNM_EXTMATCH' undeclared (first use in this function)
| conftest.c:141: error: (Each undeclared identifier is reported only once
| conftest.c:141: error: for each function it appears in.)
| configure:13760: $? = 1
| configure: program exited with status 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | /* end confdefs.h.  */
| | 
| | #      include <stdlib.h>
| | #      include <fnmatch.h>
| | #      define y(a, b, c) (fnmatch (a, b, c) == 0)
| | #      define n(a, b, c) (fnmatch (a, b, c) == FNM_NOMATCH)
| | 
| | int
| | main ()
| | {
| | exit
| |        (!(y ("a*", "abc", 0)
| |           && n ("d*/*1", "d/s/1", FNM_PATHNAME)
| |           && y ("a\\bc", "abc", 0)
| |           && n ("a\\bc", "abc", FNM_NOESCAPE)
| |           && y ("*x", ".x", 0)
| |           && n ("*x", ".x", FNM_PERIOD)
| |           && y ("xxXX", "xXxX", FNM_CASEFOLD)
| |                 && y ("a++(x|yy)b", "a+xyyyyxb", FNM_EXTMATCH)
| |                 && n ("d*/*1", "d/s/1", FNM_FILE_NAME)
| |                 && y ("*", "x", FNM_FILE_NAME | FNM_LEADING_DIR)
| |                 && y ("x*", "x/y/z", FNM_FILE_NAME | FNM_LEADING_DIR)
| |                 && y ("*c*", "c/x", FNM_FILE_NAME | FNM_LEADING_DIR)));
| |   ;
| |   return 0;
| | }
| configure:13779: result: no
| configure:13784: checking whether getenv is declared
| configure:13808: gcc -c -g -O2  conftest.c >&5
| configure:13814: $? = 0
| configure:13818: test -z 
|                        || test ! -s conftest.err
| configure:13821: $? = 0
| configure:13824: test -s conftest.o
| configure:13827: $? = 0
| configure:13838: result: yes
| configure:13865: checking for btowc
| configure:13922: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:13928: $? = 0
| configure:13932: test -z 
|                        || test ! -s conftest.err
| configure:13935: $? = 0
| configure:13938: test -s conftest.exe
| configure:13941: $? = 0
| configure:13953: result: yes
| configure:13865: checking for mbsrtowcs
| configure:13922: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:13928: $? = 0
| configure:13932: test -z 
|                        || test ! -s conftest.err
| configure:13935: $? = 0
| configure:13938: test -s conftest.exe
| configure:13941: $? = 0
| configure:13953: result: yes
| configure:13865: checking for mempcpy
| configure:13922: gcc -o conftest.exe -g -O2   conftest.c  >&5
| conftest.c:151: warning: conflicting types for built-in function 'mempcpy'
| configure:13928: $? = 0
| configure:13932: test -z 
|                        || test ! -s conftest.err
| configure:13935: $? = 0
| configure:13938: test -s conftest.exe
| configure:13941: $? = 0
| configure:13953: result: yes
| configure:13865: checking for wmemchr
| configure:13922: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:13928: $? = 0
| configure:13932: test -z 
|                        || test ! -s conftest.err
| configure:13935: $? = 0
| configure:13938: test -s conftest.exe
| configure:13941: $? = 0
| configure:13953: result: yes
| configure:13865: checking for wmemcpy
| configure:13922: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:13928: $? = 0
| configure:13932: test -z 
|                        || test ! -s conftest.err
| configure:13935: $? = 0
| configure:13938: test -s conftest.exe
| configure:13941: $? = 0
| configure:13953: result: yes
| configure:13865: checking for wmempcpy
| configure:13922: gcc -o conftest.exe -g -O2   conftest.c  >&5
| /cygdrive/c/windows/temp/ccCoVVPL.o: In function `main':
| /home/eblake/tar-1.15.1/conftest.c:170: undefined reference to `_wmempcpy'
| /home/eblake/tar-1.15.1/conftest.c:169: undefined reference to `_wmempcpy'
| collect2: ld returned 1 exit status
| configure:13928: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | /* end confdefs.h.  */
| | /* Define wmempcpy to an innocuous variant, in case <limits.h> declares 
wmempcpy.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define wmempcpy innocuous_wmempcpy
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char wmempcpy (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef wmempcpy
| | 
| | /* Override any gcc2 internal prototype to avoid an error.  */
| | #ifdef __cplusplus
| | extern "C"
| | {
| | #endif
| | /* We use char because int might match the return type of a gcc2
| |    builtin and then its argument prototype would still apply.  */
| | char wmempcpy ();
| | /* 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_wmempcpy) || defined (__stub___wmempcpy)
| | choke me
| | #else
| | char (*f) () = wmempcpy;
| | #endif
| | #ifdef __cplusplus
| | }
| | #endif
| | 
| | int
| | main ()
| | {
| | return f != wmempcpy;
| |   ;
| |   return 0;
| | }
| configure:13953: result: no
| configure:13969: checking for wchar.h
| configure:13974: result: yes
| configure:13969: checking for wctype.h
| configure:13974: result: yes
| configure:14143: checking for ftruncate
| configure:14200: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:14206: $? = 0
| configure:14210: test -z 
|                        || test ! -s conftest.err
| configure:14213: $? = 0
| configure:14216: test -s conftest.exe
| configure:14219: $? = 0
| configure:14231: result: yes
| configure:14389: checking whether getcwd handles long file names properly
| configure:14553: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:14556: $? = 0
| configure:14558: ./conftest.exe
| configure:14561: $? = 2
| configure: program exited with status 2
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | /* end confdefs.h.  */
| | 
| | #include <errno.h>
| | #include <stdlib.h>
| | #include <unistd.h>
| | #include <string.h>
| | #include <limits.h>
| | #include <sys/stat.h>
| | #include <sys/types.h>
| | #if HAVE_FCNTL_H
| | # include <fcntl.h>
| | #endif
| | 
| | #ifndef AT_FDCWD
| | # define AT_FDCWD 0
| | #endif
| | #ifdef ENAMETOOLONG
| | # define is_ENAMETOOLONG(x) ((x) == ENAMETOOLONG)
| | #else
| | # define is_ENAMETOOLONG(x) 0
| | #endif
| | 
| | /* Don't get link errors because mkdir is redefined to rpl_mkdir.  */
| | #undef mkdir
| | 
| | #ifndef S_IRWXU
| | # define S_IRWXU 0700
| | #endif
| | 
| | /* The length of this name must be 8.  */
| | #define DIR_NAME "confdir3"
| | #define DIR_NAME_LEN 8
| | #define DIR_NAME_SIZE (DIR_NAME_LEN + 1)
| | 
| | /* The length of "../".  */
| | #define DOTDOTSLASH_LEN 3
| | 
| | /* Leftover bytes in the buffer, to work around library or OS bugs.  */
| | #define BUF_SLOP 20
| | 
| | int
| | main (void)
| | {
| | #ifndef PATH_MAX
| |   /* The Hurd doesn't define this, so getcwd can't exhibit the bug --
| |      at least not on a local file system.  And if we were to start worrying
| |      about remote file systems, we'd have to enable the wrapper function
| |      all of the time, just to be safe.  That's not worth the cost.  */
| |   exit (0);
| | #elif ((INT_MAX / (DIR_NAME_SIZE / DOTDOTSLASH_LEN + 1)         - 
DIR_NAME_SIZE - BUF_SLOP)        <= PATH_MAX)
| |   /* FIXME: Assuming there's a system for which this is true,
| |      this should be done in a compile test.  */
| |   exit (0);
| | #else
| |   char buf[PATH_MAX * (DIR_NAME_SIZE / DOTDOTSLASH_LEN + 1)
| |        + DIR_NAME_SIZE + BUF_SLOP];
| |   char *cwd = getcwd (buf, PATH_MAX);
| |   size_t initial_cwd_len;
| |   size_t cwd_len;
| |   int fail = 0;
| |   size_t n_chdirs = 0;
| | 
| |   if (cwd == NULL)
| |     exit (1);
| | 
| |   cwd_len = initial_cwd_len = strlen (cwd);
| | 
| |   while (1)
| |     {
| |       size_t dotdot_max = PATH_MAX * (DIR_NAME_SIZE / DOTDOTSLASH_LEN);
| |       char *c = NULL;
| | 
| |       cwd_len += DIR_NAME_SIZE;
| |       /* If mkdir or chdir fails, be pessimistic and consider that
| |      as a failure, too.  */
| |       if (mkdir (DIR_NAME, S_IRWXU) < 0 || chdir (DIR_NAME) < 0)
| |     {
| |       fail = 2;
| |       break;
| |     }
| | 
| |       if (PATH_MAX <= cwd_len && cwd_len < PATH_MAX + DIR_NAME_SIZE)
| |     {
| |       c = getcwd (buf, PATH_MAX);
| |       if (!c && errno == ENOENT)
| |         {
| |           fail = 1;
| |           break;
| |         }
| |       if (c || ! (errno == ERANGE || is_ENAMETOOLONG (errno)))
| |         {
| |           fail = 2;
| |           break;
| |         }
| |     }
| | 
| |       if (dotdot_max <= cwd_len - initial_cwd_len)
| |     {
| |       if (dotdot_max + DIR_NAME_SIZE < cwd_len - initial_cwd_len)
| |         break;
| |       c = getcwd (buf, cwd_len + 1);
| |       if (!c)
| |         {
| |           if (! (errno == ERANGE || errno == ENOENT
| |                  || is_ENAMETOOLONG (errno)))
| |             {
| |               fail = 2;
| |               break;
| |             }
| |           if (AT_FDCWD || errno == ERANGE || errno == ENOENT)
| |             {
| |               fail = 1;
| |               break;
| |             }
| |         }
| |     }
| | 
| |       if (c && strlen (c) != cwd_len)
| |     {
| |       fail = 2;
| |       break;
| |     }
| |       ++n_chdirs;
| |     }
| | 
| |   /* Leaving behind such a deep directory is not polite.
| |      So clean up here, right away, even though the driving
| |      shell script would also clean up.  */
| |   {
| |     size_t i;
| | 
| |     /* Unlink first, in case the chdir failed.  */
| |     unlink (DIR_NAME);
| |     for (i = 0; i <= n_chdirs; i++)
| |       {
| |     if (chdir ("..") < 0)
| |       break;
| |     rmdir (DIR_NAME);
| |       }
| |   }
| | 
| |   exit (fail);
| | #endif
| | }
| | 
| configure:14579: result: no
| configure:14639: checking for struct tm.tm_zone
| configure:14665: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:143: error: structure has no member named `tm_zone'
| configure:14671: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | /* end confdefs.h.  */
| | #include <sys/types.h>
| | #include <time.h>
| | 
| | 
| | int
| | main ()
| | {
| | static struct tm ac_aggr;
| | if (ac_aggr.tm_zone)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:14712: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:143: error: structure has no member named `tm_zone'
| configure:14718: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | /* end confdefs.h.  */
| | #include <sys/types.h>
| | #include <time.h>
| | 
| | 
| | int
| | main ()
| | {
| | static struct tm ac_aggr;
| | if (sizeof ac_aggr.tm_zone)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:14744: result: no
| configure:14762: checking for tzname
| configure:14787: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:14793: $? = 0
| configure:14797: test -z 
|                        || test ! -s conftest.err
| configure:14800: $? = 0
| configure:14803: test -s conftest.exe
| configure:14806: $? = 0
| configure:14818: result: yes
| configure:14838: checking for getline
| configure:14895: gcc -o conftest.exe -g -O2   conftest.c  >&5
| /cygdrive/c/windows/temp/ccmCn89A.o: In function `main':
| /home/eblake/tar-1.15.1/conftest.c:176: undefined reference to `_getline'
| /home/eblake/tar-1.15.1/conftest.c:175: undefined reference to `_getline'
| collect2: ld returned 1 exit status
| configure:14901: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | /* end confdefs.h.  */
| | /* Define getline to an innocuous variant, in case <limits.h> declares 
getline.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define getline innocuous_getline
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char getline (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef getline
| | 
| | /* Override any gcc2 internal prototype to avoid an error.  */
| | #ifdef __cplusplus
| | extern "C"
| | {
| | #endif
| | /* We use char because int might match the return type of a gcc2
| |    builtin and then its argument prototype would still apply.  */
| | char getline ();
| | /* 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_getline) || defined (__stub___getline)
| | choke me
| | #else
| | char (*f) () = getline;
| | #endif
| | #ifdef __cplusplus
| | }
| | #endif
| | 
| | int
| | main ()
| | {
| | return f != getline;
| |   ;
| |   return 0;
| | }
| configure:14926: result: no
| configure:15028: checking for getdelim
| configure:15085: gcc -o conftest.exe -g -O2   conftest.c  >&5
| /cygdrive/c/windows/temp/ccUjToq8.o: In function `main':
| /home/eblake/tar-1.15.1/conftest.c:177: undefined reference to `_getdelim'
| /home/eblake/tar-1.15.1/conftest.c:176: undefined reference to `_getdelim'
| collect2: ld returned 1 exit status
| configure:15091: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | /* end confdefs.h.  */
| | /* Define getdelim to an innocuous variant, in case <limits.h> declares 
getdelim.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define getdelim innocuous_getdelim
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char getdelim (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef getdelim
| | 
| | /* Override any gcc2 internal prototype to avoid an error.  */
| | #ifdef __cplusplus
| | extern "C"
| | {
| | #endif
| | /* We use char because int might match the return type of a gcc2
| |    builtin and then its argument prototype would still apply.  */
| | char getdelim ();
| | /* 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_getdelim) || defined (__stub___getdelim)
| | choke me
| | #else
| | char (*f) () = getdelim;
| | #endif
| | #ifdef __cplusplus
| | }
| | #endif
| | 
| | int
| | main ()
| | {
| | return f != getdelim;
| |   ;
| |   return 0;
| | }
| configure:15116: result: no
| configure:15514: checking OS.h usability
| configure:15526: gcc -c -g -O2  conftest.c >&5
| conftest.c:171:16: OS.h: No such file or directory
| configure:15532: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #if HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #if HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #if STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # if HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #if HAVE_STRING_H
| | # if !STDC_HEADERS && HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #if HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #if HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #else
| | # if HAVE_STDINT_H
| | #  include <stdint.h>
| | # endif
| | #endif
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <OS.h>
| configure:15555: result: no
| configure:15559: checking OS.h presence
| configure:15569: gcc -E  conftest.c
| conftest.c:137:16: OS.h: No such file or directory
| configure:15575: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | /* end confdefs.h.  */
| | #include <OS.h>
| configure:15595: result: no
| configure:15630: checking for OS.h
| configure:15637: result: no
| configure:15654: checking for getpagesize
| configure:15711: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:15717: $? = 0
| configure:15721: test -z 
|                        || test ! -s conftest.err
| configure:15724: $? = 0
| configure:15727: test -s conftest.exe
| configure:15730: $? = 0
| configure:15742: result: yes
| configure:15772: checking whether gettimeofday clobbers localtime buffer
| configure:15821: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:15824: $? = 0
| configure:15826: ./conftest.exe
| configure:15829: $? = 0
| configure:15844: result: no
| configure:15904: checking for lchown
| configure:15961: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:15967: $? = 0
| configure:15971: test -z 
|                        || test ! -s conftest.err
| configure:15974: $? = 0
| configure:15977: test -s conftest.exe
| configure:15980: $? = 0
| configure:15992: result: yes
| configure:16056: checking for mempcpy
| configure:16144: result: yes
| configure:16177: checking for memset
| configure:16234: gcc -o conftest.exe -g -O2   conftest.c  >&5
| conftest.c:164: warning: conflicting types for built-in function 'memset'
| configure:16240: $? = 0
| configure:16244: test -z 
|                        || test ! -s conftest.err
| configure:16247: $? = 0
| configure:16250: test -s conftest.exe
| configure:16253: $? = 0
| configure:16265: result: yes
| configure:16312: checking for obstacks
| configure:16333: gcc -o conftest.exe -g -O2   conftest.c  >&5
| conftest.c:142:21: obstack.h: No such file or directory
| configure:16339: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | /* end confdefs.h.  */
| | #include "obstack.h"
| | int
| | main ()
| | {
| | struct obstack *mem; obstack_free(mem,(char *) 0)
| |   ;
| |   return 0;
| | }
| configure:16364: result: no
| configure:16419: checking for mbstate_t
| configure:16471: result: yes
| configure:16487: checking whether mbrtowc and mbstate_t are properly declared
| configure:16508: gcc -o conftest.exe -g -O2   conftest.c  >&5
| conftest.c: In function `main':
| conftest.c:147: warning: the address of `mbrtowc', will always evaluate as 
`true'
| configure:16514: $? = 0
| configure:16518: test -z 
|                        || test ! -s conftest.err
| configure:16521: $? = 0
| configure:16524: test -s conftest.exe
| configure:16527: $? = 0
| configure:16539: result: yes
| configure:16552: checking for C/C++ restrict keyword
| configure:16570: gcc -c -g -O2  conftest.c >&5
| conftest.c:144: error: parse error before "x"
| conftest.c:144: warning: data definition has no type or storage class
| configure:16576: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | /* end confdefs.h.  */
| | float * restrict x;
| configure:16570: gcc -c -g -O2  conftest.c >&5
| configure:16576: $? = 0
| configure:16580: test -z 
|                        || test ! -s conftest.err
| configure:16583: $? = 0
| configure:16586: test -s conftest.o
| configure:16589: $? = 0
| configure:16601: result: __restrict
| configure:16623: checking for rmdir
| configure:16680: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:16686: $? = 0
| configure:16690: test -z 
|                        || test ! -s conftest.err
| configure:16693: $? = 0
| configure:16696: test -s conftest.exe
| configure:16699: $? = 0
| configure:16711: result: yes
| configure:16785: checking for fchdir
| configure:16842: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:16848: $? = 0
| configure:16852: test -z 
|                        || test ! -s conftest.err
| configure:16855: $? = 0
| configure:16858: test -s conftest.exe
| configure:16861: $? = 0
| configure:16873: result: yes
| configure:16898: checking for setenv
| configure:16955: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:16961: $? = 0
| configure:16965: test -z 
|                        || test ! -s conftest.err
| configure:16968: $? = 0
| configure:16971: test -s conftest.exe
| configure:16974: $? = 0
| configure:16986: result: yes
| configure:16898: checking for unsetenv
| configure:16955: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:16961: $? = 0
| configure:16965: test -z 
|                        || test ! -s conftest.err
| configure:16968: $? = 0
| configure:16971: test -s conftest.exe
| configure:16974: $? = 0
| configure:16986: result: yes
| configure:17545: checking for unsetenv() return type
| configure:17576: gcc -c -g -O2  conftest.c >&5
| conftest.c:155: error: conflicting types for 'unsetenv'
| /usr/include/stdlib.h:181: error: previous declaration of 'unsetenv' was here
| conftest.c:155: error: conflicting types for 'unsetenv'
| /usr/include/stdlib.h:181: error: previous declaration of 'unsetenv' was here
| configure:17582: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | extern
| | #ifdef __cplusplus
| | "C"
| | #endif
| | #if defined(__STDC__) || defined(__cplusplus)
| | int unsetenv (const char *name);
| | #else
| | int unsetenv();
| | #endif
| | 
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:17606: result: void
| configure:17647: checking for stpcpy
| configure:17704: gcc -o conftest.exe -g -O2   conftest.c  >&5
| conftest.c:174: warning: conflicting types for built-in function 'stpcpy'
| /cygdrive/c/windows/temp/ccodsCyH.o: In function `main':
| /home/eblake/tar-1.15.1/conftest.c:190: undefined reference to `_stpcpy'
| /home/eblake/tar-1.15.1/conftest.c:189: undefined reference to `_stpcpy'
| collect2: ld returned 1 exit status
| configure:17710: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | /* end confdefs.h.  */
| | /* Define stpcpy to an innocuous variant, in case <limits.h> declares 
stpcpy.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define stpcpy innocuous_stpcpy
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char stpcpy (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef stpcpy
| | 
| | /* Override any gcc2 internal prototype to avoid an error.  */
| | #ifdef __cplusplus
| | extern "C"
| | {
| | #endif
| | /* We use char because int might match the return type of a gcc2
| |    builtin and then its argument prototype would still apply.  */
| | char stpcpy ();
| | /* 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_stpcpy) || defined (__stub___stpcpy)
| | choke me
| | #else
| | char (*f) () = stpcpy;
| | #endif
| | #ifdef __cplusplus
| | }
| | #endif
| | 
| | int
| | main ()
| | {
| | return f != stpcpy;
| |   ;
| |   return 0;
| | }
| configure:17735: result: no
| configure:17769: checking for strcasecmp
| configure:17826: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:17832: $? = 0
| configure:17836: test -z 
|                        || test ! -s conftest.err
| configure:17839: $? = 0
| configure:17842: test -s conftest.exe
| configure:17845: $? = 0
| configure:17857: result: yes
| configure:17888: checking for strncasecmp
| configure:17945: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:17951: $? = 0
| configure:17955: test -z 
|                        || test ! -s conftest.err
| configure:17958: $? = 0
| configure:17961: test -s conftest.exe
| configure:17964: $? = 0
| configure:17976: result: yes
| configure:18012: checking for strchrnul
| configure:18069: gcc -o conftest.exe -g -O2   conftest.c  >&5
| /cygdrive/c/windows/temp/ccAYcv3Q.o: In function `main':
| /home/eblake/tar-1.15.1/conftest.c:192: undefined reference to `_strchrnul'
| /home/eblake/tar-1.15.1/conftest.c:191: undefined reference to `_strchrnul'
| collect2: ld returned 1 exit status
| configure:18075: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define HAVE_STRCASECMP 1
| | #define HAVE_STRNCASECMP 1
| | /* end confdefs.h.  */
| | /* Define strchrnul to an innocuous variant, in case <limits.h> declares 
strchrnul.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define strchrnul innocuous_strchrnul
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char strchrnul (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef strchrnul
| | 
| | /* Override any gcc2 internal prototype to avoid an error.  */
| | #ifdef __cplusplus
| | extern "C"
| | {
| | #endif
| | /* We use char because int might match the return type of a gcc2
| |    builtin and then its argument prototype would still apply.  */
| | char strchrnul ();
| | /* 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_strchrnul) || defined (__stub___strchrnul)
| | choke me
| | #else
| | char (*f) () = strchrnul;
| | #endif
| | #ifdef __cplusplus
| | }
| | #endif
| | 
| | int
| | main ()
| | {
| | return f != strchrnul;
| |   ;
| |   return 0;
| | }
| configure:18100: result: no
| configure:18133: checking for strndup
| configure:18190: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:18196: $? = 0
| configure:18200: test -z 
|                        || test ! -s conftest.err
| configure:18203: $? = 0
| configure:18206: test -s conftest.exe
| configure:18209: $? = 0
| configure:18221: result: yes
| configure:18323: checking for working strnlen
| configure:18362: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:18365: $? = 0
| configure:18367: ./conftest.exe
| configure:18370: $? = 0
| configure:18384: result: yes
| configure:18414: checking whether <inttypes.h> defines strtoimax as a macro
| configure:18439: result: no
| configure:18447: checking for strtoimax
| configure:18504: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:18510: $? = 0
| configure:18514: test -z 
|                        || test ! -s conftest.err
| configure:18517: $? = 0
| configure:18520: test -s conftest.exe
| configure:18523: $? = 0
| configure:18535: result: yes
| configure:18662: checking for strtol
| configure:18719: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:18725: $? = 0
| configure:18729: test -z 
|                        || test ! -s conftest.err
| configure:18732: $? = 0
| configure:18735: test -s conftest.exe
| configure:18738: $? = 0
| configure:18750: result: yes
| configure:18792: checking for strtoll
| configure:18849: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:18855: $? = 0
| configure:18859: test -z 
|                        || test ! -s conftest.err
| configure:18862: $? = 0
| configure:18865: test -s conftest.exe
| configure:18868: $? = 0
| configure:18880: result: yes
| configure:18914: checking for strtoul
| configure:18971: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:18977: $? = 0
| configure:18981: test -z 
|                        || test ! -s conftest.err
| configure:18984: $? = 0
| configure:18987: test -s conftest.exe
| configure:18990: $? = 0
| configure:19002: result: yes
| configure:19046: checking for strtoull
| configure:19103: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:19109: $? = 0
| configure:19113: test -z 
|                        || test ! -s conftest.err
| configure:19116: $? = 0
| configure:19119: test -s conftest.exe
| configure:19122: $? = 0
| configure:19134: result: yes
| configure:19167: checking whether <inttypes.h> defines strtoumax as a macro
| configure:19192: result: no
| configure:19200: checking for strtoumax
| configure:19257: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:19263: $? = 0
| configure:19267: test -z 
|                        || test ! -s conftest.err
| configure:19270: $? = 0
| configure:19273: test -s conftest.exe
| configure:19276: $? = 0
| configure:19288: result: yes
| configure:19425: checking sysexits.h usability
| configure:19437: gcc -c -g -O2  conftest.c >&5
| configure:19443: $? = 0
| configure:19447: test -z 
|                        || test ! -s conftest.err
| configure:19450: $? = 0
| configure:19453: test -s conftest.o
| configure:19456: $? = 0
| configure:19466: result: yes
| configure:19470: checking sysexits.h presence
| configure:19480: gcc -E  conftest.c
| configure:19486: $? = 0
| configure:19506: result: yes
| configure:19541: checking for sysexits.h
| configure:19548: result: yes
| configure:19571: checking whether localtime_r is compatible with its POSIX 
signature
| configure:19595: gcc -c -g -O2  conftest.c >&5
| configure:19601: $? = 0
| configure:19605: test -z 
|                        || test ! -s conftest.err
| configure:19608: $? = 0
| configure:19611: test -s conftest.o
| configure:19614: $? = 0
| configure:19625: result: yes
| configure:19669: checking for struct timespec
| configure:19732: result: yes
| configure:19743: checking for nanoseconds member of struct stat.st_mtim
| configure:19805: result: tv_nsec
| configure:19820: checking whether nanosleep is declared
| configure:19875: result: yes
| configure:20078: checking for struct stat.st_spare1
| configure:20104: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:173: error: structure has no member named `st_spare1'
| configure:20110: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define HAVE_STRCASECMP 1
| | #define HAVE_STRNCASECMP 1
| | #define HAVE_STRNDUP 1
| | #define HAVE_STRTOIMAX 1
| | #define HAVE_STRTOL 1
| | #define HAVE_STRTOLL 1
| | #define HAVE_STRTOUL 1
| | #define HAVE_STRTOULL 1
| | #define HAVE_STRTOUMAX 1
| | #define HAVE_SYSEXITS_H 1
| | #define HAVE_TIME_R_POSIX 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define USE_UNLOCKED_IO 1
| | /* end confdefs.h.  */
| | 
| | #include <sys/types.h>
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | static struct stat ac_aggr;
| | if (ac_aggr.st_spare1)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:20151: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:173: error: structure has no member named `st_spare1'
| configure:20157: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define HAVE_STRCASECMP 1
| | #define HAVE_STRNCASECMP 1
| | #define HAVE_STRNDUP 1
| | #define HAVE_STRTOIMAX 1
| | #define HAVE_STRTOL 1
| | #define HAVE_STRTOLL 1
| | #define HAVE_STRTOUL 1
| | #define HAVE_STRTOULL 1
| | #define HAVE_STRTOUMAX 1
| | #define HAVE_SYSEXITS_H 1
| | #define HAVE_TIME_R_POSIX 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define USE_UNLOCKED_IO 1
| | /* end confdefs.h.  */
| | 
| | #include <sys/types.h>
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | static struct stat ac_aggr;
| | if (sizeof ac_aggr.st_spare1)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:20183: result: no
| configure:20193: checking for struct stat.st_atim.tv_nsec
| configure:20219: gcc -c -g -O2  conftest.c >&5
| configure:20225: $? = 0
| configure:20229: test -z 
|                        || test ! -s conftest.err
| configure:20232: $? = 0
| configure:20235: test -s conftest.o
| configure:20238: $? = 0
| configure:20298: result: yes
| configure:20308: checking for struct stat.st_atimespec.tv_nsec
| configure:20334: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:174: error: structure has no member named `st_atimespec'
| configure:20340: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define HAVE_STRCASECMP 1
| | #define HAVE_STRNCASECMP 1
| | #define HAVE_STRNDUP 1
| | #define HAVE_STRTOIMAX 1
| | #define HAVE_STRTOL 1
| | #define HAVE_STRTOLL 1
| | #define HAVE_STRTOUL 1
| | #define HAVE_STRTOULL 1
| | #define HAVE_STRTOUMAX 1
| | #define HAVE_SYSEXITS_H 1
| | #define HAVE_TIME_R_POSIX 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| | /* end confdefs.h.  */
| | 
| | #include <sys/types.h>
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | static struct stat ac_aggr;
| | if (ac_aggr.st_atimespec.tv_nsec)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:20381: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:174: error: structure has no member named `st_atimespec'
| configure:20387: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define HAVE_STRCASECMP 1
| | #define HAVE_STRNCASECMP 1
| | #define HAVE_STRNDUP 1
| | #define HAVE_STRTOIMAX 1
| | #define HAVE_STRTOL 1
| | #define HAVE_STRTOLL 1
| | #define HAVE_STRTOUL 1
| | #define HAVE_STRTOULL 1
| | #define HAVE_STRTOUMAX 1
| | #define HAVE_SYSEXITS_H 1
| | #define HAVE_TIME_R_POSIX 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| | /* end confdefs.h.  */
| | 
| | #include <sys/types.h>
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | static struct stat ac_aggr;
| | if (sizeof ac_aggr.st_atimespec.tv_nsec)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:20413: result: no
| configure:20423: checking for struct stat.st_atimensec
| configure:20449: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:174: error: structure has no member named `st_atimensec'
| configure:20455: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define HAVE_STRCASECMP 1
| | #define HAVE_STRNCASECMP 1
| | #define HAVE_STRNDUP 1
| | #define HAVE_STRTOIMAX 1
| | #define HAVE_STRTOL 1
| | #define HAVE_STRTOLL 1
| | #define HAVE_STRTOUL 1
| | #define HAVE_STRTOULL 1
| | #define HAVE_STRTOUMAX 1
| | #define HAVE_SYSEXITS_H 1
| | #define HAVE_TIME_R_POSIX 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| | /* end confdefs.h.  */
| | 
| | #include <sys/types.h>
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | static struct stat ac_aggr;
| | if (ac_aggr.st_atimensec)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:20496: gcc -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:174: error: structure has no member named `st_atimensec'
| configure:20502: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define HAVE_STRCASECMP 1
| | #define HAVE_STRNCASECMP 1
| | #define HAVE_STRNDUP 1
| | #define HAVE_STRTOIMAX 1
| | #define HAVE_STRTOL 1
| | #define HAVE_STRTOLL 1
| | #define HAVE_STRTOUL 1
| | #define HAVE_STRTOULL 1
| | #define HAVE_STRTOUMAX 1
| | #define HAVE_SYSEXITS_H 1
| | #define HAVE_TIME_R_POSIX 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| | /* end confdefs.h.  */
| | 
| | #include <sys/types.h>
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | static struct stat ac_aggr;
| | if (sizeof ac_aggr.st_atimensec)
| | return 0;
| |   ;
| |   return 0;
| | }
| configure:20528: result: no
| configure:20548: checking for library containing clock_gettime
| configure:20667: result: none required
| configure:20682: checking for clock_gettime
| configure:20770: result: yes
| configure:20793: checking for fsync
| configure:20850: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:20856: $? = 0
| configure:20860: test -z 
|                        || test ! -s conftest.err
| configure:20863: $? = 0
| configure:20866: test -s conftest.exe
| configure:20869: $? = 0
| configure:20881: result: yes
| configure:20793: checking for lstat
| configure:20850: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:20856: $? = 0
| configure:20860: test -z 
|                        || test ! -s conftest.err
| configure:20863: $? = 0
| configure:20866: test -s conftest.exe
| configure:20869: $? = 0
| configure:20881: result: yes
| configure:20793: checking for mkfifo
| configure:20850: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:20856: $? = 0
| configure:20860: test -z 
|                        || test ! -s conftest.err
| configure:20863: $? = 0
| configure:20866: test -s conftest.exe
| configure:20869: $? = 0
| configure:20881: result: yes
| configure:20793: checking for readlink
| configure:20850: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:20856: $? = 0
| configure:20860: test -z 
|                        || test ! -s conftest.err
| configure:20863: $? = 0
| configure:20866: test -s conftest.exe
| configure:20869: $? = 0
| configure:20881: result: yes
| configure:20793: checking for strerror
| configure:20850: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:20856: $? = 0
| configure:20860: test -z 
|                        || test ! -s conftest.err
| configure:20863: $? = 0
| configure:20866: test -s conftest.exe
| configure:20869: $? = 0
| configure:20881: result: yes
| configure:20793: checking for symlink
| configure:20850: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:20856: $? = 0
| configure:20860: test -z 
|                        || test ! -s conftest.err
| configure:20863: $? = 0
| configure:20866: test -s conftest.exe
| configure:20869: $? = 0
| configure:20881: result: yes
| configure:20793: checking for setlocale
| configure:20881: result: yes
| configure:20793: checking for utimes
| configure:20850: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:20856: $? = 0
| configure:20860: test -z 
|                        || test ! -s conftest.err
| configure:20863: $? = 0
| configure:20866: test -s conftest.exe
| configure:20869: $? = 0
| configure:20881: result: yes
| configure:20891: checking whether getgrgid is declared
| configure:20916: gcc -c -g -O2  conftest.c >&5
| configure:20922: $? = 0
| configure:20926: test -z 
|                        || test ! -s conftest.err
| configure:20929: $? = 0
| configure:20932: test -s conftest.o
| configure:20935: $? = 0
| configure:20946: result: yes
| configure:20964: checking whether getpwuid is declared
| configure:20989: gcc -c -g -O2  conftest.c >&5
| configure:20995: $? = 0
| configure:20999: test -z 
|                        || test ! -s conftest.err
| configure:21002: $? = 0
| configure:21005: test -s conftest.o
| configure:21008: $? = 0
| configure:21019: result: yes
| configure:21037: checking whether time is declared
| configure:21062: gcc -c -g -O2  conftest.c >&5
| configure:21068: $? = 0
| configure:21072: test -z 
|                        || test ! -s conftest.err
| configure:21075: $? = 0
| configure:21078: test -s conftest.o
| configure:21081: $? = 0
| configure:21092: result: yes
| configure:21114: checking for library containing setsockopt
| configure:21144: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:21150: $? = 0
| configure:21154: test -z 
|                        || test ! -s conftest.err
| configure:21157: $? = 0
| configure:21160: test -s conftest.exe
| configure:21163: $? = 0
| configure:21233: result: none required
| configure:21367: checking for library containing setsockopt
| configure:21486: result: none required
| configure:21504: checking for waitpid
| configure:21561: gcc -o conftest.exe -g -O2   conftest.c  >&5
| configure:21567: $? = 0
| configure:21571: test -z 
|                        || test ! -s conftest.err
| configure:21574: $? = 0
| configure:21577: test -s conftest.exe
| configure:21580: $? = 0
| configure:21592: result: yes
| configure:21613: checking for remote shell
| configure:21639: result: /usr/bin/rsh
| configure:21800: checking for default archive format
| configure:21819: result: GNU
| configure:21822: checking for default archive
| configure:21867: result: -
| configure:21871: checking for default blocking
| configure:21879: result: 20
| configure:21941: checking for sys/mtio.h
| configure:21946: result: yes
| configure:22086: checking which ioctl field to test for reversed bytes
| configure:22109: result: mt_type
| configure:22125: checking whether to build rmt
| configure:22143: result: yes
| configure:21885: checking for remote tape header files
| configure:21902: gcc -E  conftest.c
| configure:21908: $? = 0
| configure:21929: result: yes
| configure:22203: checking for ld used by GCC
| configure:22267: result: /usr/i686-pc-cygwin/bin/ld.exe
| configure:22276: checking if the linker (/usr/i686-pc-cygwin/bin/ld.exe) is 
GNU ld
| configure:22289: result: yes
| configure:22295: checking for shared library run path origin
| configure:22308: result: done
| configure:22738: checking for iconv
| configure:22765: gcc -o conftest.exe -g -O2   conftest.c  >&5
| /cygdrive/c/windows/temp/ccxSTqYf.o: In function `main':
| /home/eblake/tar-1.15.1/conftest.c:190: undefined reference to `_iconv_open'
| /home/eblake/tar-1.15.1/conftest.c:191: undefined reference to `_iconv'
| /home/eblake/tar-1.15.1/conftest.c:192: undefined reference to `_iconv_close'
| collect2: ld returned 1 exit status
| configure:22771: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define HAVE_STRCASECMP 1
| | #define HAVE_STRNCASECMP 1
| | #define HAVE_STRNDUP 1
| | #define HAVE_STRTOIMAX 1
| | #define HAVE_STRTOL 1
| | #define HAVE_STRTOLL 1
| | #define HAVE_STRTOUL 1
| | #define HAVE_STRTOULL 1
| | #define HAVE_STRTOUMAX 1
| | #define HAVE_SYSEXITS_H 1
| | #define HAVE_TIME_R_POSIX 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_FSYNC 1
| | #define HAVE_LSTAT 1
| | #define HAVE_MKFIFO 1
| | #define HAVE_READLINK 1
| | #define HAVE_STRERROR 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_UTIMES 1
| | #define HAVE_DECL_GETGRGID 1
| | #define HAVE_DECL_GETPWUID 1
| | #define HAVE_DECL_TIME 1
| | #define HAVE_WAITPID 1
| | #define REMOTE_SHELL "/usr/bin/rsh"
| | #define DEFAULT_ARCHIVE_FORMAT GNU_FORMAT
| | #define DEFAULT_ARCHIVE "-"
| | #define DEFAULT_BLOCKING 20
| | #define HAVE_SYS_MTIO_H 1
| | #define MTIO_CHECK_FIELD mt_type
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #include <iconv.h>
| | int
| | main ()
| | {
| | iconv_t cd = iconv_open("","");
| |        iconv(cd,NULL,NULL,NULL,NULL);
| |        iconv_close(cd);
| |   ;
| |   return 0;
| | }
| configure:22816: gcc -o conftest.exe -g -O2   conftest.c  -liconv >&5
| /cygdrive/c/windows/temp/ccKWAByK.o: In function `main':
| /home/eblake/tar-1.15.1/conftest.c:190: undefined reference to `_iconv_open'
| /home/eblake/tar-1.15.1/conftest.c:191: undefined reference to `_iconv'
| /home/eblake/tar-1.15.1/conftest.c:192: undefined reference to `_iconv_close'
| collect2: ld returned 1 exit status
| configure:22822: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define HAVE_STRCASECMP 1
| | #define HAVE_STRNCASECMP 1
| | #define HAVE_STRNDUP 1
| | #define HAVE_STRTOIMAX 1
| | #define HAVE_STRTOL 1
| | #define HAVE_STRTOLL 1
| | #define HAVE_STRTOUL 1
| | #define HAVE_STRTOULL 1
| | #define HAVE_STRTOUMAX 1
| | #define HAVE_SYSEXITS_H 1
| | #define HAVE_TIME_R_POSIX 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_FSYNC 1
| | #define HAVE_LSTAT 1
| | #define HAVE_MKFIFO 1
| | #define HAVE_READLINK 1
| | #define HAVE_STRERROR 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_UTIMES 1
| | #define HAVE_DECL_GETGRGID 1
| | #define HAVE_DECL_GETPWUID 1
| | #define HAVE_DECL_TIME 1
| | #define HAVE_WAITPID 1
| | #define REMOTE_SHELL "/usr/bin/rsh"
| | #define DEFAULT_ARCHIVE_FORMAT GNU_FORMAT
| | #define DEFAULT_ARCHIVE "-"
| | #define DEFAULT_BLOCKING 20
| | #define HAVE_SYS_MTIO_H 1
| | #define MTIO_CHECK_FIELD mt_type
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #include <iconv.h>
| | int
| | main ()
| | {
| | iconv_t cd = iconv_open("","");
| |          iconv(cd,NULL,NULL,NULL,NULL);
| |          iconv_close(cd);
| |   ;
| |   return 0;
| | }
| configure:22850: result: no, consider installing GNU libiconv
| configure:22965: checking iconv.h usability
| configure:22977: gcc -c -g -O2  conftest.c >&5
| configure:22983: $? = 0
| configure:22987: test -z 
|                        || test ! -s conftest.err
| configure:22990: $? = 0
| configure:22993: test -s conftest.o
| configure:22996: $? = 0
| configure:23006: result: yes
| configure:23010: checking iconv.h presence
| configure:23020: gcc -E  conftest.c
| configure:23026: $? = 0
| configure:23046: result: yes
| configure:23081: checking for iconv.h
| configure:23088: result: yes
| configure:23101: checking for iconv_t
| configure:23130: gcc -c -g -O2  conftest.c >&5
| configure:23136: $? = 0
| configure:23140: test -z 
|                        || test ! -s conftest.err
| configure:23143: $? = 0
| configure:23146: test -s conftest.o
| configure:23149: $? = 0
| configure:23160: result: yes
| configure:23188: checking whether NLS is requested
| configure:23197: result: yes
| configure:23235: checking for msgfmt
| configure:23266: result: /usr/bin/msgfmt
| configure:23275: checking for gmsgfmt
| configure:23306: result: /usr/bin/msgfmt
| configure:23345: checking for xgettext
| configure:23376: result: /usr/bin/xgettext
| configure:23416: checking for msgmerge
| configure:23446: result: /usr/bin/msgmerge
| configure:23497: checking whether NLS is requested
| configure:23506: result: yes
| configure:23524: checking for GNU gettext in libc
| configure:23548: gcc -o conftest.exe -g -O2   conftest.c  >&5
| /cygdrive/c/windows/temp/ccMvKZ53.o: In function `main':
| /home/eblake/tar-1.15.1/conftest.c:192: undefined reference to 
`_libintl_bindtextdomain'
| /home/eblake/tar-1.15.1/conftest.c:193: undefined reference to 
`_libintl_gettext'
| /home/eblake/tar-1.15.1/conftest.c:193: undefined reference to 
`_libintl_ngettext'
| /home/eblake/tar-1.15.1/conftest.c:193: undefined reference to 
`__nl_domain_bindings'
| /home/eblake/tar-1.15.1/conftest.c:193: undefined reference to 
`__nl_msg_cat_cntr'
| collect2: ld returned 1 exit status
| configure:23554: $? = 1
| configure: failed program was:
| | /* confdefs.h.  */
| | 
| | #define PACKAGE_NAME "GNU tar"
| | #define PACKAGE_TARNAME "tar"
| | #define PACKAGE_VERSION "1.15.1"
| | #define PACKAGE_STRING "GNU tar 1.15.1"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "tar"
| | #define VERSION "1.15.1"
| | #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 HAVE_FCNTL_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_MTIO_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_WAIT_H 1
| | #define HAVE__BOOL 1
| | #define HAVE_STDBOOL_H 1
| | #define HAVE_DIRENT_H 1
| | #define STDC_HEADERS 1
| | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| | #define HAVE_ST_BLKSIZE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define RETSIGTYPE void
| | #define major_t int
| | #define minor_t int
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_LONG_LONG 1
| | #define HAVE_INTMAX_T 1
| | #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| | #define HAVE_STDINT_H_WITH_UINTMAX 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_STDLIB_H 1
| | #define MALLOC_0_IS_NONNULL 1
| | #define HAVE_LONG_DOUBLE 1
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define HAVE_DECL_GETCHAR_UNLOCKED 1
| | #define HAVE_DECL_PUTC_UNLOCKED 1
| | #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| | #define USE_UNLOCKED_IO 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_ISASCII 1
| | #define HAVE_GETTIMEOFDAY 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_ISWPRINT 1
| | #define HAVE_MBSINIT 1
| | #define HAVE_FEATURES_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_FCNTL_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_STDDEF_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_UTIME_H 1
| | #define D_INO_IN_DIRENT 1
| | #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| | #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| | #define HAVE_LONG_FILE_NAMES 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_CHOWN 1
| | #define HAVE_DECL_STRERROR_R 1
| | #define HAVE_STRERROR_R 1
| | #define STRERROR_R_CHAR_P 1
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_DECL_GETCWD 1
| | #define TIME_WITH_SYS_TIME 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_UNSIGNED_LONG_LONG 1
| | #define HAVE_UINTMAX_T 1
| | #define HAVE_LANGINFO_CODESET 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_ALARM 1
| | #define HAVE_UTIME_NULL 1
| | #define HAVE_STRUCT_UTIMBUF 1
| | #define HAVE_DECL_STRTOIMAX 1
| | #define HAVE_DECL_STRTOUMAX 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_ALLOCA_H 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_PATHCONF 1
| | #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| | #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| | #define HAVE_ST_BLOCKS 1
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_BTOWC 1
| | #define HAVE_MBSRTOWCS 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_WMEMCHR 1
| | #define HAVE_WMEMCPY 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_WCTYPE_H 1
| | #define fnmatch gnu_fnmatch
| | #define HAVE_FTRUNCATE 1
| | #define __GETCWD_PREFIX rpl_
| | #define HAVE_TZNAME 1
| | #define getline gnu_getline
| | #define HAVE_GETPAGESIZE 1
| | #define HAVE_LCHOWN 1
| | #define HAVE_MEMPCPY 1
| | #define HAVE_MEMSET 1
| | #define mktime rpl_mktime
| | #define HAVE_MBSTATE_T 1
| | #define HAVE_MBRTOWC 1
| | #define restrict __restrict
| | #define HAVE_RMDIR 1
| | #define HAVE_FCHDIR 1
| | #define HAVE_SETENV 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define HAVE_STRCASECMP 1
| | #define HAVE_STRNCASECMP 1
| | #define HAVE_STRNDUP 1
| | #define HAVE_STRTOIMAX 1
| | #define HAVE_STRTOL 1
| | #define HAVE_STRTOLL 1
| | #define HAVE_STRTOUL 1
| | #define HAVE_STRTOULL 1
| | #define HAVE_STRTOUMAX 1
| | #define HAVE_SYSEXITS_H 1
| | #define HAVE_TIME_R_POSIX 1
| | #define HAVE_STRUCT_TIMESPEC 1
| | #define ST_MTIM_NSEC tv_nsec
| | #define HAVE_DECL_NANOSLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| | #define HAVE_CLOCK_GETTIME 1
| | #define HAVE_FSYNC 1
| | #define HAVE_LSTAT 1
| | #define HAVE_MKFIFO 1
| | #define HAVE_READLINK 1
| | #define HAVE_STRERROR 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_UTIMES 1
| | #define HAVE_DECL_GETGRGID 1
| | #define HAVE_DECL_GETPWUID 1
| | #define HAVE_DECL_TIME 1
| | #define HAVE_WAITPID 1
| | #define REMOTE_SHELL "/usr/bin/rsh"
| | #define DEFAULT_ARCHIVE_FORMAT GNU_FORMAT
| | #define DEFAULT_ARCHIVE "-"
| | #define DEFAULT_BLOCKING 20
| | #define HAVE_SYS_MTIO_H 1
| | #define MTIO_CHECK_FIELD mt_type
| | #define HAVE_ICONV_H 1
| | /* end confdefs.h.  */
| | #include <libintl.h>
| | extern int _nl_msg_cat_cntr;
| | extern int *_nl_domain_bindings;
| | int
| | main ()
| | {
| | bindtextdomain ("", "");
| | return (int) gettext ("") + (int) ngettext ("", "", 0) + _nl_msg_cat_cntr + 
*_nl_domain_bindings
| |   ;
| |   return 0;
| | }
| configure:23579: result: no
| configure:23613: checking for iconv
| configure:23725: result: no, consider installing GNU libiconv
| configure:24126: checking for GNU gettext in libintl
| configure:24158: gcc -o conftest.exe -g -O2    conftest.c  -lintl >&5
| Info: resolving __nl_msg_cat_cntr by linking to __imp___nl_msg_cat_cntr 
(auto-import)
| configure:24164: $? = 0
| configure:24168: test -z 
|                        || test ! -s conftest.err
| configure:24171: $? = 0
| configure:24174: test -s conftest.exe
| configure:24177: $? = 0
| configure:24249: result: yes
| configure:24278: checking whether to use NLS
| configure:24280: result: yes
| configure:24283: checking where the gettext function comes from
| configure:24294: result: external libintl
| configure:24302: checking how to link with libintl
| configure:24304: result: -lintl
| configure:24504: creating ./config.status
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by GNU tar config.status 1.15.1, which was
| generated by GNU Autoconf 2.59.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status 
| 
| on LOUNGE
| 
| config.status:749: creating tests/Makefile
| config.status:749: creating tests/atlocal
| config.status:749: creating Makefile
| config.status:749: creating doc/Makefile
| config.status:749: creating lib/Makefile
| config.status:749: creating po/Makefile.in
| config.status:749: creating scripts/Makefile
| config.status:749: creating rmt/Makefile
| config.status:749: creating src/Makefile
| config.status:853: creating config.h
| config.status:1367: config.h is unchanged
| config.status:1547: executing depfiles commands
| config.status:1547: executing default-1 commands
| config.status:1547: executing tests/atconfig commands
| 
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
| 
| ac_cv_build=i686-pc-cygwin
| ac_cv_build_alias=i686-pc-cygwin
| ac_cv_c_compiler_gnu=yes
| ac_cv_c_const=yes
| ac_cv_c_inline=inline
| 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_DEFAULT_ARCHIVE_FORMAT_set=
| ac_cv_env_DEFAULT_ARCHIVE_FORMAT_value=
| ac_cv_env_DEFAULT_ARCHIVE_set=
| ac_cv_env_DEFAULT_ARCHIVE_value=
| ac_cv_env_DEFAULT_BLOCKING_set=
| ac_cv_env_DEFAULT_BLOCKING_value=
| ac_cv_env_DEFAULT_RMT_DIR_set=
| ac_cv_env_DEFAULT_RMT_DIR_value=
| ac_cv_env_LDFLAGS_set=
| ac_cv_env_LDFLAGS_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_exeext=.exe
| ac_cv_func_alarm=yes
| ac_cv_func_alloca_works=yes
| ac_cv_func_btowc=yes
| ac_cv_func_chown_works=yes
| ac_cv_func_clock_gettime=yes
| ac_cv_func_clock_settime=no
| ac_cv_func_closedir_void=no
| ac_cv_func_fchdir=yes
| ac_cv_func_flockfile=yes
| ac_cv_func_fnmatch_gnu=no
| ac_cv_func_fsync=yes
| ac_cv_func_ftruncate=yes
| ac_cv_func_funlockfile=yes
| ac_cv_func_getdelim=no
| ac_cv_func_getline=no
| ac_cv_func_getpagesize=yes
| ac_cv_func_gettimeofday=yes
| ac_cv_func_isascii=yes
| ac_cv_func_iswprint=yes
| ac_cv_func_lchown=yes
| ac_cv_func_lstat=yes
| ac_cv_func_malloc_0_nonnull=yes
| ac_cv_func_mbsinit=yes
| ac_cv_func_mbsrtowcs=yes
| ac_cv_func_mempcpy=yes
| ac_cv_func_memset=yes
| ac_cv_func_mkfifo=yes
| ac_cv_func_obstack=no
| ac_cv_func_pathconf=yes
| ac_cv_func_readlink=yes
| ac_cv_func_rmdir=yes
| ac_cv_func_setenv=yes
| ac_cv_func_setlocale=yes
| ac_cv_func_stpcpy=no
| ac_cv_func_strcasecmp=yes
| ac_cv_func_strchrnul=no
| ac_cv_func_strerror=yes
| ac_cv_func_strerror_r=yes
| ac_cv_func_strerror_r_char_p=yes
| ac_cv_func_strncasecmp=yes
| ac_cv_func_strndup=yes
| ac_cv_func_strnlen_working=yes
| ac_cv_func_strtoimax=yes
| ac_cv_func_strtol=yes
| ac_cv_func_strtoll=yes
| ac_cv_func_strtoul=yes
| ac_cv_func_strtoull=yes
| ac_cv_func_strtoumax=yes
| ac_cv_func_symlink=yes
| ac_cv_func_unsetenv=yes
| ac_cv_func_utime_null=yes
| ac_cv_func_utimes=yes
| ac_cv_func_waitpid=yes
| ac_cv_func_wmemchr=yes
| ac_cv_func_wmemcpy=yes
| ac_cv_func_wmempcpy=no
| ac_cv_func_working_mktime=no
| ac_cv_gnu_library_2_1=no
| ac_cv_have_decl_clearerr_unlocked=no
| ac_cv_have_decl_feof_unlocked=no
| ac_cv_have_decl_ferror_unlocked=no
| ac_cv_have_decl_fflush_unlocked=no
| ac_cv_have_decl_fgets_unlocked=no
| ac_cv_have_decl_fputc_unlocked=no
| ac_cv_have_decl_fputs_unlocked=no
| ac_cv_have_decl_fread_unlocked=no
| ac_cv_have_decl_fwrite_unlocked=no
| ac_cv_have_decl_getc_unlocked=yes
| ac_cv_have_decl_getchar_unlocked=yes
| ac_cv_have_decl_getcwd=yes
| ac_cv_have_decl_getenv=yes
| ac_cv_have_decl_getgrgid=yes
| ac_cv_have_decl_getpwuid=yes
| ac_cv_have_decl_nanosleep=yes
| ac_cv_have_decl_program_invocation_name=no
| ac_cv_have_decl_program_invocation_short_name=no
| ac_cv_have_decl_putc_unlocked=yes
| ac_cv_have_decl_putchar_unlocked=yes
| ac_cv_have_decl_strerror_r=yes
| ac_cv_have_decl_strtoimax=yes
| ac_cv_have_decl_strtoumax=yes
| ac_cv_have_decl_time=yes
| ac_cv_header_OS_h=no
| ac_cv_header_dirent_dirent_h=yes
| ac_cv_header_fcntl_h=yes
| ac_cv_header_features_h=yes
| ac_cv_header_iconv_h=yes
| ac_cv_header_inttypes_h=yes
| ac_cv_header_linewrap_h=no
| ac_cv_header_linux_fd_h=no
| ac_cv_header_locale_h=yes
| ac_cv_header_memory_h=yes
| ac_cv_header_minix_config_h=no
| ac_cv_header_net_errno_h=no
| ac_cv_header_sgtty_h=no
| ac_cv_header_stat_broken=no
| ac_cv_header_stdbool_h=yes
| ac_cv_header_stdc=yes
| ac_cv_header_stddef_h=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_buf_h=no
| ac_cv_header_sys_device_h=no
| ac_cv_header_sys_gentape_h=no
| ac_cv_header_sys_inet_h=no
| ac_cv_header_sys_io_trioctl_h=no
| ac_cv_header_sys_mtio_h=yes
| ac_cv_header_sys_param_h=yes
| ac_cv_header_sys_stat_h=yes
| ac_cv_header_sys_tape_h=no
| ac_cv_header_sys_time_h=yes
| ac_cv_header_sys_tprintf_h=no
| ac_cv_header_sys_types_h=yes
| ac_cv_header_sys_types_h_makedev=yes
| ac_cv_header_sys_wait_h=yes
| ac_cv_header_sysexits_h=yes
| ac_cv_header_time=yes
| ac_cv_header_unistd_h=yes
| ac_cv_header_utime_h=yes
| ac_cv_header_wchar_h=yes
| ac_cv_header_wctype_h=yes
| ac_cv_host=i686-pc-cygwin
| ac_cv_host_alias=i686-pc-cygwin
| ac_cv_lib_error_at_line=no
| ac_cv_member_struct_stat_st_atim_tv_nsec=yes
| ac_cv_member_struct_stat_st_atimensec=no
| ac_cv_member_struct_stat_st_atimespec_tv_nsec=no
| ac_cv_member_struct_stat_st_blksize=yes
| ac_cv_member_struct_stat_st_blocks=yes
| ac_cv_member_struct_stat_st_spare1=no
| ac_cv_member_struct_tm_tm_gmtoff=no
| ac_cv_member_struct_tm_tm_zone=no
| ac_cv_objext=o
| ac_cv_path_GMSGFMT=/usr/bin/msgfmt
| ac_cv_path_MSGFMT=/usr/bin/msgfmt
| ac_cv_path_MSGMERGE=/usr/bin/msgmerge
| ac_cv_path_XGETTEXT=/usr/bin/xgettext
| ac_cv_path_install='/usr/bin/install -c'
| ac_cv_prog_AWK=gawk
| ac_cv_prog_CPP='gcc -E'
| ac_cv_prog_YACC='bison -y'
| ac_cv_prog_ac_ct_CC=gcc
| ac_cv_prog_ac_ct_RANLIB=ranlib
| ac_cv_prog_cc_g=yes
| ac_cv_prog_cc_stdc=
| ac_cv_prog_egrep='grep -E'
| ac_cv_prog_make_make_set=yes
| ac_cv_search_clock_gettime='none required'
| ac_cv_search_opendir='none required'
| ac_cv_search_setsockopt='none required'
| ac_cv_search_strerror='none required'
| ac_cv_struct_st_mtim_nsec=tv_nsec
| ac_cv_struct_tm=time.h
| ac_cv_sys_file_offset_bits=no
| ac_cv_sys_large_files=no
| ac_cv_sys_largefile_CC=no
| ac_cv_sys_long_file_names=yes
| ac_cv_type__Bool=yes
| ac_cv_type_dev_t=yes
| ac_cv_type_iconv_t=yes
| ac_cv_type_ino_t=yes
| ac_cv_type_long_long=yes
| ac_cv_type_major_t=no
| ac_cv_type_mbstate_t=yes
| ac_cv_type_minor_t=no
| ac_cv_type_mode_t=yes
| ac_cv_type_off_t=yes
| ac_cv_type_pid_t=yes
| ac_cv_type_signal=void
| ac_cv_type_size_t=yes
| ac_cv_type_uid_t=yes
| ac_cv_type_unsigned_long_long=yes
| ac_cv_var_tzname=yes
| ac_cv_win_or_dos=yes
| ac_cv_working_alloca_h=yes
| acl_cv_hardcode_direct=no
| acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
| acl_cv_hardcode_libdir_separator=
| acl_cv_hardcode_minus_L=no
| acl_cv_libext=a
| acl_cv_path_LD=/usr/i686-pc-cygwin/bin/ld.exe
| acl_cv_prog_gnu_ld=yes
| acl_cv_rpath=done
| acl_cv_shlibext=dll
| acl_cv_wl=-Wl,
| am_cv_CC_dependencies_compiler_type=gcc3
| am_cv_func_iconv='no, consider installing GNU libiconv'
| am_cv_func_working_getline=no
| am_cv_langinfo_codeset=yes
| am_cv_lib_iconv=no
| diff_cv_st_fstype_string=no
| fu_cv_sys_struct_timespec=yes
| fu_cv_sys_struct_utimbuf=yes
| gl_cv_c_restrict=__restrict
| gl_cv_func_chown_follows_symlink=yes
| gl_cv_func_getcwd_null=yes
| gl_cv_func_getcwd_path_max=no
| gl_cv_func_malloc_0_nonnull=1
| gl_cv_func_mbrtowc=yes
| gl_cv_header_inttypes_h=yes
| gl_cv_header_stdint_h=yes
| gl_cv_time_r_posix=yes
| gt_cv_c_long_double=yes
| gt_cv_func_gnugettext2_libc=no
| gt_cv_func_gnugettext2_libintl=yes
| gt_cv_func_unsetenv_ret=void
| gt_cv_ssize_t=yes
| jm_ac_cv_header_inttypes_h=yes
| jm_ac_cv_header_stdint_h=yes
| jm_cv_func_gettimeofday_clobber=no
| jm_cv_func_strtoimax_macro=no
| jm_cv_func_strtoumax_macro=no
| jm_cv_struct_dirent_d_ino=yes
| pu_cv_header_mtio_check_field=mt_type
| pu_cv_header_rmt=yes
| tar_cv_path_RSH=/usr/bin/rsh
| 
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
| 
| ACLOCAL='${SHELL} /home/eblake/tar-1.15.1/config/missing --run aclocal-1.9'
| ALLOCA=''
| ALLOCA_H='alloca.h'
| AMDEPBACKSLASH='\'
| AMDEP_FALSE='#'
| AMDEP_TRUE=''
| AMTAR='${SHELL} /home/eblake/tar-1.15.1/config/missing --run tar'
| AUTOCONF='${SHELL} /home/eblake/tar-1.15.1/config/missing --run autoconf'
| AUTOHEADER='${SHELL} /home/eblake/tar-1.15.1/config/missing --run autoheader'
| AUTOM4TE='${SHELL} /home/eblake/tar-1.15.1/config/missing --run autom4te'
| AUTOMAKE='${SHELL} /home/eblake/tar-1.15.1/config/missing --run automake-1.9'
| AWK='gawk'
| BACKUP_LIBEXEC_SCRIPTS=''
| BACKUP_SBIN_SCRIPTS=''
| 
BACKUP_SED_COND='/^\#ELSE_DATE_FORMAT_OK/,/^\#ENDIF_DATE_FORMAT_OK/d;/^\#IF_DATE_FORMAT_OK/d'
| CC='gcc'
| CCDEPMODE='depmode=gcc3'
| CFLAGS='-g -O2'
| CPP='gcc -E'
| CPPFLAGS=''
| CYGPATH_W='cygpath -w'
| DEFAULT_ARCHIVE='-'
| DEFAULT_ARCHIVE_FORMAT='GNU'
| DEFAULT_BLOCKING='20'
| DEFAULT_RMT_COMMAND=''
| DEFAULT_RMT_DIR='$(libexecdir)'
| DEFS='-DHAVE_CONFIG_H'
| DEPDIR='.deps'
| ECHO_C=''
| ECHO_N='-n'
| ECHO_T=''
| EGREP='grep -E'
| EXEEXT='.exe'
| FNMATCH_H='fnmatch.h'
| GETOPT_H='getopt.h'
| GLIBC21='no'
| GMSGFMT='/usr/bin/msgfmt'
| HAVE__BOOL='1'
| INSTALL_DATA='${INSTALL} -m 644'
| INSTALL_PROGRAM='${INSTALL}'
| INSTALL_SCRIPT='${INSTALL}'
| INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
| INTLLIBS='-lintl'
| LDFLAGS=''
| LIBICONV=''
| LIBINTL='-lintl'
| LIBOBJS=' getopt$U.o getopt1$U.o mktime$U.o error$U.o fnmatch$U.o getcwd$U.o 
getline$U.o getndelim2$U.o obstack$U.o stpcpy$U.o strchrnul$U.o'
| LIBS=''
| LIB_CLOCK_GETTIME=''
| LIB_SETSOCKOPT=''
| LTLIBICONV=''
| LTLIBINTL='-lintl'
| LTLIBOBJS=' getopt$U.lo getopt1$U.lo mktime$U.lo error$U.lo fnmatch$U.lo 
getcwd$U.lo getline$U.lo getndelim2$U.lo obstack$U.lo stpcpy$U.lo 
strchrnul$U.lo'
| MAKEINFO='${SHELL} /home/eblake/tar-1.15.1/config/missing --run makeinfo'
| MKINSTALLDIRS='$(top_builddir)/config/mkinstalldirs'
| MSGFMT='/usr/bin/msgfmt'
| MSGMERGE='/usr/bin/msgmerge'
| OBJEXT='o'
| PACKAGE='tar'
| PACKAGE_BUGREPORT='address@hidden'
| PACKAGE_NAME='GNU tar'
| PACKAGE_STRING='GNU tar 1.15.1'
| PACKAGE_TARNAME='tar'
| PACKAGE_VERSION='1.15.1'
| PATH_SEPARATOR=':'
| POSUB='po'
| PU_RMT_PROG='rmt$(EXEEXT)'
| RANLIB='ranlib'
| SET_MAKE=''
| SHELL='/bin/sh'
| STDBOOL_H=''
| STRIP=''
| SYSEXITS_H='sysexits.h'
| USE_NLS='yes'
| VERSION='1.15.1'
| XGETTEXT='/usr/bin/xgettext'
| YACC='bison -y'
| ac_ct_CC='gcc'
| ac_ct_RANLIB='ranlib'
| ac_ct_STRIP=''
| am__fastdepCC_FALSE='#'
| am__fastdepCC_TRUE=''
| am__include='include'
| am__leading_dot='.'
| am__quote=''
| am__tar='${AMTAR} chof - "$$tardir"'
| am__untar='${AMTAR} xf -'
| bindir='${exec_prefix}/bin'
| build='i686-pc-cygwin'
| build_alias=''
| build_cpu='i686'
| build_os='cygwin'
| build_vendor='pc'
| datadir='${prefix}/share'
| exec_prefix='${prefix}'
| host='i686-pc-cygwin'
| host_alias=''
| host_cpu='i686'
| host_os='cygwin'
| host_vendor='pc'
| includedir='${prefix}/include'
| infodir='${prefix}/info'
| install_sh='/home/eblake/tar-1.15.1/config/install-sh'
| libdir='${exec_prefix}/lib'
| libexecdir='${exec_prefix}/libexec'
| localstatedir='${prefix}/var'
| mandir='${prefix}/man'
| mkdir_p='mkdir -p --'
| oldincludedir='/usr/include'
| prefix='/usr/local'
| program_transform_name='s,x,x,'
| sbindir='${exec_prefix}/sbin'
| sharedstatedir='${prefix}/com'
| sysconfdir='${prefix}/etc'
| target_alias=''
| 
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
| 
| #define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1
| #define DEFAULT_ARCHIVE "-"
| #define DEFAULT_ARCHIVE_FORMAT GNU_FORMAT
| #define DEFAULT_BLOCKING 20
| #define D_INO_IN_DIRENT 1
| #define ENABLE_NLS 1
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 1
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 1
| #define HAVE_ALARM 1
| #define HAVE_ALLOCA 1
| #define HAVE_ALLOCA 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_BTOWC 1
| #define HAVE_CHOWN 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_DCGETTEXT 1
| #define HAVE_DECL_CLEARERR_UNLOCKED 0
| #define HAVE_DECL_FEOF_UNLOCKED 0
| #define HAVE_DECL_FERROR_UNLOCKED 0
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_GETCWD 1
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETGRGID 1
| #define HAVE_DECL_GETPWUID 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_DECL_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_FCHDIR 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FEATURES_H 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FSYNC 1
| #define HAVE_FTRUNCATE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTEXT 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_ICONV_H 1
| #define HAVE_INTMAX_T 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_ISASCII 1
| #define HAVE_ISWPRINT 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LCHOWN 1
| #define HAVE_LOCALE_H 1
| #define HAVE_LONG_DOUBLE 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LSTAT 1
| #define HAVE_MBRTOWC 1
| #define HAVE_MBSINIT 1
| #define HAVE_MBSRTOWCS 1
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBSTATE_T 1
| #define HAVE_MEMORY_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_MEMPCPY 1
| #define HAVE_MEMPCPY 1
| #define HAVE_MEMSET 1
| #define HAVE_MKFIFO 1
| #define HAVE_PATHCONF 1
| #define HAVE_READLINK 1
| #define HAVE_RMDIR 1
| #define HAVE_SETENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRERROR_R 1
| #define HAVE_STRINGS_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRNDUP 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_STRUCT_UTIMBUF 1
| #define HAVE_ST_BLKSIZE 1
| #define HAVE_ST_BLOCKS 1
| #define HAVE_ST_BLOCKS 1
| #define HAVE_SYMLINK 1
| #define HAVE_SYSEXITS_H 1
| #define HAVE_SYS_MTIO_H 1
| #define HAVE_SYS_MTIO_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_TZNAME 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UNSETENV 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UTIMES 1
| #define HAVE_UTIME_H 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_WAITPID 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_WMEMCHR 1
| #define HAVE_WMEMCPY 1
| #define HAVE__BOOL 1
| #define MALLOC_0_IS_NONNULL 1
| #define MTIO_CHECK_FIELD mt_type
| #define PACKAGE "tar"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE_NAME "GNU tar"
| #define PACKAGE_STRING "GNU tar 1.15.1"
| #define PACKAGE_TARNAME "tar"
| #define PACKAGE_VERSION "1.15.1"
| #define REMOTE_SHELL "/usr/bin/rsh"
| #define RETSIGTYPE void
| #define STDC_HEADERS 1
| #define STDC_HEADERS 1
| #define STRERROR_R_CHAR_P 1
| #define ST_MTIM_NSEC tv_nsec
| #define ST_MTIM_NSEC tv_nsec
| #define TIME_WITH_SYS_TIME 1
| #define USE_UNLOCKED_IO 1
| #define USE_UNLOCKED_IO 1
| #define VERSION "1.15.1"
| #define VOID_UNSETENV 1
| #define _GNU_SOURCE 1
| #define __EXTENSIONS__ 1
| #define __GETCWD_PREFIX rpl_
| #define __GETOPT_PREFIX rpl_
| #define fnmatch gnu_fnmatch
| #define getline gnu_getline
| #define major_t int
| #define minor_t int
| #define mktime rpl_mktime
| #define restrict __restrict
| 
| configure: exit 0
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by GNU tar config.status 1.15.1, which was
| generated by GNU Autoconf 2.59.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status config.h
| 
| on LOUNGE
| 
| config.status:853: creating config.h
| config.status:1367: config.h is unchanged


reply via email to

[Prev in Thread] Current Thread [Next in Thread]