1021 lines
31 KiB
Diff
1021 lines
31 KiB
Diff
diff -Naur tar-1.27-orig/build-aux/compile tar-1.27/build-aux/compile
|
|
--- tar-1.27-orig/build-aux/compile 2013-06-29 09:54:46.000000000 +0400
|
|
+++ tar-1.27/build-aux/compile 2013-10-20 10:19:37.283400000 +0400
|
|
@@ -53,7 +53,7 @@
|
|
MINGW*)
|
|
file_conv=mingw
|
|
;;
|
|
- CYGWIN*)
|
|
+ CYGWIN* | MSYS*)
|
|
file_conv=cygwin
|
|
;;
|
|
*)
|
|
@@ -67,7 +67,7 @@
|
|
mingw/*)
|
|
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
|
|
;;
|
|
- cygwin/*)
|
|
+ cygwin/* | msys/*)
|
|
file=`cygpath -m "$file" || echo "$file"`
|
|
;;
|
|
wine/*)
|
|
diff -Naur tar-1.27-orig/build-aux/config.guess tar-1.27/build-aux/config.guess
|
|
--- tar-1.29/build-aux/config.guess.orig 2015-08-24 06:07:56.000000000 -0400
|
|
+++ tar-1.29/build-aux/config.guess 2016-06-06 01:02:10.230770900 -0400
|
|
@@ -1,8 +1,8 @@
|
|
#! /bin/sh
|
|
# Attempt to guess a canonical system name.
|
|
-# Copyright 1992-2015 Free Software Foundation, Inc.
|
|
+# Copyright 1992-2013 Free Software Foundation, Inc.
|
|
|
|
-timestamp='2015-08-20'
|
|
+timestamp='2013-11-29'
|
|
|
|
# This file is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
@@ -24,12 +24,12 @@
|
|
# program. This Exception is an additional permission under section 7
|
|
# of the GNU General Public License, version 3 ("GPLv3").
|
|
#
|
|
-# Originally written by Per Bothner; maintained since 2000 by Ben Elliston.
|
|
+# Originally written by Per Bothner.
|
|
#
|
|
# You can get the latest version of this script from:
|
|
# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
|
|
#
|
|
-# Please send patches to <config-patches@gnu.org>.
|
|
+# Please send patches with a ChangeLog entry to config-patches@gnu.org.
|
|
|
|
|
|
me=`echo "$0" | sed -e 's,.*/,,'`
|
|
@@ -50,7 +50,7 @@
|
|
GNU config.guess ($timestamp)
|
|
|
|
Originally written by Per Bothner.
|
|
-Copyright 1992-2015 Free Software Foundation, Inc.
|
|
+Copyright 1992-2013 Free Software Foundation, Inc.
|
|
|
|
This is free software; see the source for copying conditions. There is NO
|
|
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
|
|
@@ -149,7 +149,7 @@
|
|
LIBC=gnu
|
|
#endif
|
|
EOF
|
|
- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
|
|
+ eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
|
|
;;
|
|
esac
|
|
|
|
@@ -168,27 +168,20 @@
|
|
# Note: NetBSD doesn't particularly care about the vendor
|
|
# portion of the name. We always set it to "unknown".
|
|
sysctl="sysctl -n hw.machine_arch"
|
|
- UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \
|
|
- /sbin/$sysctl 2>/dev/null || \
|
|
- /usr/sbin/$sysctl 2>/dev/null || \
|
|
- echo unknown)`
|
|
+ UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
|
|
+ /usr/sbin/$sysctl 2>/dev/null || echo unknown)`
|
|
case "${UNAME_MACHINE_ARCH}" in
|
|
armeb) machine=armeb-unknown ;;
|
|
arm*) machine=arm-unknown ;;
|
|
sh3el) machine=shl-unknown ;;
|
|
sh3eb) machine=sh-unknown ;;
|
|
sh5el) machine=sh5le-unknown ;;
|
|
- earmv*)
|
|
- arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
|
|
- endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'`
|
|
- machine=${arch}${endian}-unknown
|
|
- ;;
|
|
*) machine=${UNAME_MACHINE_ARCH}-unknown ;;
|
|
esac
|
|
# The Operating System including object format, if it has switched
|
|
# to ELF recently, or will in the future.
|
|
case "${UNAME_MACHINE_ARCH}" in
|
|
- arm*|earm*|i386|m68k|ns32k|sh3*|sparc|vax)
|
|
+ arm*|i386|m68k|ns32k|sh3*|sparc|vax)
|
|
eval $set_cc_for_build
|
|
if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
|
|
| grep -q __ELF__
|
|
@@ -204,13 +197,6 @@
|
|
os=netbsd
|
|
;;
|
|
esac
|
|
- # Determine ABI tags.
|
|
- case "${UNAME_MACHINE_ARCH}" in
|
|
- earm*)
|
|
- expr='s/^earmv[0-9]/-eabi/;s/eb$//'
|
|
- abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"`
|
|
- ;;
|
|
- esac
|
|
# The OS release
|
|
# Debian GNU/NetBSD machines have a different userland, and
|
|
# thus, need a distinct triplet. However, they do not need
|
|
@@ -221,13 +207,13 @@
|
|
release='-gnu'
|
|
;;
|
|
*)
|
|
- release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2`
|
|
+ release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
|
|
;;
|
|
esac
|
|
# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
|
|
# contains redundant information, the shorter form:
|
|
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
|
|
- echo "${machine}-${os}${release}${abi}"
|
|
+ echo "${machine}-${os}${release}"
|
|
exit ;;
|
|
*:Bitrig:*:*)
|
|
UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
|
|
@@ -249,9 +235,6 @@
|
|
*:MirBSD:*:*)
|
|
echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
|
|
exit ;;
|
|
- *:Sortix:*:*)
|
|
- echo ${UNAME_MACHINE}-unknown-sortix
|
|
- exit ;;
|
|
alpha:OSF1:*:*)
|
|
case $UNAME_RELEASE in
|
|
*4.0)
|
|
@@ -596,9 +579,8 @@
|
|
else
|
|
IBM_ARCH=powerpc
|
|
fi
|
|
- if [ -x /usr/bin/lslpp ] ; then
|
|
- IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc |
|
|
- awk -F: '{ print $3 }' | sed s/[0-9]*$/0/`
|
|
+ if [ -x /usr/bin/oslevel ] ; then
|
|
+ IBM_REV=`/usr/bin/oslevel`
|
|
else
|
|
IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
|
|
fi
|
|
@@ -844,7 +826,7 @@
|
|
*:MINGW*:*)
|
|
echo ${UNAME_MACHINE}-pc-mingw32
|
|
exit ;;
|
|
- *:MSYS*:*)
|
|
+ i*:MSYS*:*)
|
|
echo ${UNAME_MACHINE}-pc-msys
|
|
exit ;;
|
|
i*:windows32*:*)
|
|
@@ -884,6 +866,9 @@
|
|
amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
|
|
echo x86_64-unknown-cygwin
|
|
exit ;;
|
|
+ amd64:MSYS*:*:* | x86_64:MSYS*:*:*)
|
|
+ echo x86_64-unknown-msys
|
|
+ exit ;;
|
|
p*:CYGWIN*:*)
|
|
echo powerpcle-unknown-cygwin
|
|
exit ;;
|
|
@@ -950,9 +935,6 @@
|
|
crisv32:Linux:*:*)
|
|
echo ${UNAME_MACHINE}-axis-linux-${LIBC}
|
|
exit ;;
|
|
- e2k:Linux:*:*)
|
|
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
|
|
- exit ;;
|
|
frv:Linux:*:*)
|
|
echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
|
|
exit ;;
|
|
@@ -990,10 +972,10 @@
|
|
eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
|
|
test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
|
|
;;
|
|
- openrisc*:Linux:*:*)
|
|
- echo or1k-unknown-linux-${LIBC}
|
|
+ or1k:Linux:*:*)
|
|
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
|
|
exit ;;
|
|
- or32:Linux:*:* | or1k*:Linux:*:*)
|
|
+ or32:Linux:*:*)
|
|
echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
|
|
exit ;;
|
|
padre:Linux:*:*)
|
|
@@ -1041,7 +1023,7 @@
|
|
echo ${UNAME_MACHINE}-dec-linux-${LIBC}
|
|
exit ;;
|
|
x86_64:Linux:*:*)
|
|
- echo ${UNAME_MACHINE}-pc-linux-${LIBC}
|
|
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
|
|
exit ;;
|
|
xtensa*:Linux:*:*)
|
|
echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
|
|
@@ -1392,6 +1374,154 @@
|
|
exit ;;
|
|
esac
|
|
|
|
+eval $set_cc_for_build
|
|
+cat >$dummy.c <<EOF
|
|
+#ifdef _SEQUENT_
|
|
+# include <sys/types.h>
|
|
+# include <sys/utsname.h>
|
|
+#endif
|
|
+main ()
|
|
+{
|
|
+#if defined (sony)
|
|
+#if defined (MIPSEB)
|
|
+ /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed,
|
|
+ I don't know.... */
|
|
+ printf ("mips-sony-bsd\n"); exit (0);
|
|
+#else
|
|
+#include <sys/param.h>
|
|
+ printf ("m68k-sony-newsos%s\n",
|
|
+#ifdef NEWSOS4
|
|
+ "4"
|
|
+#else
|
|
+ ""
|
|
+#endif
|
|
+ ); exit (0);
|
|
+#endif
|
|
+#endif
|
|
+
|
|
+#if defined (__arm) && defined (__acorn) && defined (__unix)
|
|
+ printf ("arm-acorn-riscix\n"); exit (0);
|
|
+#endif
|
|
+
|
|
+#if defined (hp300) && !defined (hpux)
|
|
+ printf ("m68k-hp-bsd\n"); exit (0);
|
|
+#endif
|
|
+
|
|
+#if defined (NeXT)
|
|
+#if !defined (__ARCHITECTURE__)
|
|
+#define __ARCHITECTURE__ "m68k"
|
|
+#endif
|
|
+ int version;
|
|
+ version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
|
|
+ if (version < 4)
|
|
+ printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
|
|
+ else
|
|
+ printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
|
|
+ exit (0);
|
|
+#endif
|
|
+
|
|
+#if defined (MULTIMAX) || defined (n16)
|
|
+#if defined (UMAXV)
|
|
+ printf ("ns32k-encore-sysv\n"); exit (0);
|
|
+#else
|
|
+#if defined (CMU)
|
|
+ printf ("ns32k-encore-mach\n"); exit (0);
|
|
+#else
|
|
+ printf ("ns32k-encore-bsd\n"); exit (0);
|
|
+#endif
|
|
+#endif
|
|
+#endif
|
|
+
|
|
+#if defined (__386BSD__)
|
|
+ printf ("i386-pc-bsd\n"); exit (0);
|
|
+#endif
|
|
+
|
|
+#if defined (sequent)
|
|
+#if defined (i386)
|
|
+ printf ("i386-sequent-dynix\n"); exit (0);
|
|
+#endif
|
|
+#if defined (ns32000)
|
|
+ printf ("ns32k-sequent-dynix\n"); exit (0);
|
|
+#endif
|
|
+#endif
|
|
+
|
|
+#if defined (_SEQUENT_)
|
|
+ struct utsname un;
|
|
+
|
|
+ uname(&un);
|
|
+
|
|
+ if (strncmp(un.version, "V2", 2) == 0) {
|
|
+ printf ("i386-sequent-ptx2\n"); exit (0);
|
|
+ }
|
|
+ if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
|
|
+ printf ("i386-sequent-ptx1\n"); exit (0);
|
|
+ }
|
|
+ printf ("i386-sequent-ptx\n"); exit (0);
|
|
+
|
|
+#endif
|
|
+
|
|
+#if defined (vax)
|
|
+# if !defined (ultrix)
|
|
+# include <sys/param.h>
|
|
+# if defined (BSD)
|
|
+# if BSD == 43
|
|
+ printf ("vax-dec-bsd4.3\n"); exit (0);
|
|
+# else
|
|
+# if BSD == 199006
|
|
+ printf ("vax-dec-bsd4.3reno\n"); exit (0);
|
|
+# else
|
|
+ printf ("vax-dec-bsd\n"); exit (0);
|
|
+# endif
|
|
+# endif
|
|
+# else
|
|
+ printf ("vax-dec-bsd\n"); exit (0);
|
|
+# endif
|
|
+# else
|
|
+ printf ("vax-dec-ultrix\n"); exit (0);
|
|
+# endif
|
|
+#endif
|
|
+
|
|
+#if defined (alliant) && defined (i860)
|
|
+ printf ("i860-alliant-bsd\n"); exit (0);
|
|
+#endif
|
|
+
|
|
+ exit (1);
|
|
+}
|
|
+EOF
|
|
+
|
|
+$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
|
|
+ { echo "$SYSTEM_NAME"; exit; }
|
|
+
|
|
+# Apollos put the system type in the environment.
|
|
+
|
|
+test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
|
|
+
|
|
+# Convex versions that predate uname can use getsysinfo(1)
|
|
+
|
|
+if [ -x /usr/convex/getsysinfo ]
|
|
+then
|
|
+ case `getsysinfo -f cpu_type` in
|
|
+ c1*)
|
|
+ echo c1-convex-bsd
|
|
+ exit ;;
|
|
+ c2*)
|
|
+ if getsysinfo -f scalar_acc
|
|
+ then echo c32-convex-bsd
|
|
+ else echo c2-convex-bsd
|
|
+ fi
|
|
+ exit ;;
|
|
+ c34*)
|
|
+ echo c34-convex-bsd
|
|
+ exit ;;
|
|
+ c38*)
|
|
+ echo c38-convex-bsd
|
|
+ exit ;;
|
|
+ c4*)
|
|
+ echo c4-convex-bsd
|
|
+ exit ;;
|
|
+ esac
|
|
+fi
|
|
+
|
|
cat >&2 <<EOF
|
|
$0: unable to guess system type
|
|
|
|
diff -aur tar-1.29/build-aux/config.rpath.orig tar-1.29/build-aux/config.rpath
|
|
--- tar-1.29/build-aux/config.rpath.orig 2016-04-06 00:58:58.000000000 -0400
|
|
+++ tar-1.29/build-aux/config.rpath 2016-06-06 01:10:31.836773200 -0400
|
|
@@ -2,7 +2,7 @@
|
|
# Output a system dependent set of variables, describing how to set the
|
|
# run time search path of shared libraries in an executable.
|
|
#
|
|
-# Copyright 1996-2015 Free Software Foundation, Inc.
|
|
+# Copyright 1996-2006 Free Software Foundation, Inc.
|
|
# Taken from GNU libtool, 2001
|
|
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
|
|
#
|
|
@@ -25,7 +25,7 @@
|
|
# known workaround is to choose shorter directory names for the build
|
|
# directory and/or the installation directory.
|
|
|
|
-# All known linkers require a '.a' archive for static linking (except MSVC,
|
|
+# All known linkers require a `.a' archive for static linking (except MSVC,
|
|
# which needs '.lib').
|
|
libext=a
|
|
shrext=.so
|
|
@@ -47,7 +47,7 @@
|
|
done
|
|
cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'`
|
|
|
|
-# Code taken from libtool.m4's _LT_COMPILER_PIC.
|
|
+# Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC.
|
|
|
|
wl=
|
|
if test "$GCC" = yes; then
|
|
@@ -57,7 +57,14 @@
|
|
aix*)
|
|
wl='-Wl,'
|
|
;;
|
|
- mingw* | cygwin* | pw32* | os2* | cegcc*)
|
|
+ darwin*)
|
|
+ case $cc_basename in
|
|
+ xlc*)
|
|
+ wl='-Wl,'
|
|
+ ;;
|
|
+ esac
|
|
+ ;;
|
|
+ mingw* | pw32* | os2* | cegcc*)
|
|
;;
|
|
hpux9* | hpux10* | hpux11*)
|
|
wl='-Wl,'
|
|
@@ -65,37 +72,24 @@
|
|
irix5* | irix6* | nonstopux*)
|
|
wl='-Wl,'
|
|
;;
|
|
- linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
|
+ newsos6)
|
|
+ ;;
|
|
+ linux*)
|
|
case $cc_basename in
|
|
- ecc*)
|
|
- wl='-Wl,'
|
|
- ;;
|
|
- icc* | ifort*)
|
|
+ icc* | ecc*)
|
|
wl='-Wl,'
|
|
;;
|
|
- lf95*)
|
|
- wl='-Wl,'
|
|
- ;;
|
|
- nagfor*)
|
|
- wl='-Wl,-Wl,,'
|
|
- ;;
|
|
- pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
|
|
+ pgcc | pgf77 | pgf90)
|
|
wl='-Wl,'
|
|
;;
|
|
ccc*)
|
|
wl='-Wl,'
|
|
;;
|
|
- xl* | bgxl* | bgf* | mpixl*)
|
|
- wl='-Wl,'
|
|
- ;;
|
|
como)
|
|
wl='-lopt='
|
|
;;
|
|
*)
|
|
case `$CC -V 2>&1 | sed 5q` in
|
|
- *Sun\ F* | *Sun*Fortran*)
|
|
- wl=
|
|
- ;;
|
|
*Sun\ C*)
|
|
wl='-Wl,'
|
|
;;
|
|
@@ -103,36 +97,22 @@
|
|
;;
|
|
esac
|
|
;;
|
|
- newsos6)
|
|
- ;;
|
|
- *nto* | *qnx*)
|
|
- ;;
|
|
osf3* | osf4* | osf5*)
|
|
wl='-Wl,'
|
|
;;
|
|
- rdos*)
|
|
+ sco3.2v5*)
|
|
;;
|
|
solaris*)
|
|
- case $cc_basename in
|
|
- f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)
|
|
- wl='-Qoption ld '
|
|
- ;;
|
|
- *)
|
|
- wl='-Wl,'
|
|
- ;;
|
|
- esac
|
|
+ wl='-Wl,'
|
|
;;
|
|
sunos4*)
|
|
wl='-Qoption ld '
|
|
;;
|
|
- sysv4 | sysv4.2uw2* | sysv4.3*)
|
|
+ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
|
|
wl='-Wl,'
|
|
;;
|
|
sysv4*MP*)
|
|
;;
|
|
- sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
|
|
- wl='-Wl,'
|
|
- ;;
|
|
unicos*)
|
|
wl='-Wl,'
|
|
;;
|
|
@@ -141,7 +121,7 @@
|
|
esac
|
|
fi
|
|
|
|
-# Code taken from libtool.m4's _LT_LINKER_SHLIBS.
|
|
+# Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS.
|
|
|
|
hardcode_libdir_flag_spec=
|
|
hardcode_libdir_separator=
|
|
@@ -149,7 +129,7 @@
|
|
hardcode_minus_L=no
|
|
|
|
case "$host_os" in
|
|
- cygwin* | mingw* | pw32* | cegcc*)
|
|
+ cygwin* | msys* | mingw* | pw32* | cegcc*)
|
|
# FIXME: the MSVC++ port hasn't been tested in a loooong time
|
|
# When not using gcc, we currently assume that we are using
|
|
# Microsoft Visual C++.
|
|
@@ -175,21 +155,22 @@
|
|
# option of GNU ld is called -rpath, not --rpath.
|
|
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
|
case "$host_os" in
|
|
- aix[3-9]*)
|
|
+ aix3* | aix4* | aix5*)
|
|
# On AIX/PPC, the GNU linker is very broken
|
|
if test "$host_cpu" != ia64; then
|
|
ld_shlibs=no
|
|
fi
|
|
;;
|
|
amigaos*)
|
|
- case "$host_cpu" in
|
|
- powerpc)
|
|
- ;;
|
|
- m68k)
|
|
- hardcode_libdir_flag_spec='-L$libdir'
|
|
- hardcode_minus_L=yes
|
|
- ;;
|
|
- esac
|
|
+ hardcode_libdir_flag_spec='-L$libdir'
|
|
+ hardcode_minus_L=yes
|
|
+ # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
|
|
+ # that the semantics of dynamic libraries on AmigaOS, at least up
|
|
+ # to version 4, is to share data among multiple programs linked
|
|
+ # with the same dynamic library. Since this doesn't match the
|
|
+ # behavior of shared libraries on other platforms, we cannot use
|
|
+ # them.
|
|
+ ld_shlibs=no
|
|
;;
|
|
beos*)
|
|
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
|
@@ -198,7 +179,7 @@
|
|
ld_shlibs=no
|
|
fi
|
|
;;
|
|
- cygwin* | mingw* | pw32* | cegcc*)
|
|
+ cygwin* | msys* | mingw* | pw32* | cegcc*)
|
|
# hardcode_libdir_flag_spec is actually meaningless, as there is
|
|
# no search path for DLLs.
|
|
hardcode_libdir_flag_spec='-L$libdir'
|
|
@@ -208,13 +189,11 @@
|
|
ld_shlibs=no
|
|
fi
|
|
;;
|
|
- haiku*)
|
|
- ;;
|
|
- interix[3-9]*)
|
|
+ interix3*)
|
|
hardcode_direct=no
|
|
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
|
;;
|
|
- gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
|
|
+ linux*)
|
|
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
|
:
|
|
else
|
|
@@ -272,7 +251,7 @@
|
|
hardcode_direct=unsupported
|
|
fi
|
|
;;
|
|
- aix[4-9]*)
|
|
+ aix4* | aix5*)
|
|
if test "$host_cpu" = ia64; then
|
|
# On IA64, the linker does run time linking by default, so we don't
|
|
# have to do anything special.
|
|
@@ -282,7 +261,7 @@
|
|
# Test if we are trying to use run time linking or normal
|
|
# AIX style linking. If -brtl is somewhere in LDFLAGS, we
|
|
# need to do runtime linking.
|
|
- case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
|
|
+ case $host_os in aix4.[23]|aix4.[23].*|aix5*)
|
|
for ld_flag in $LDFLAGS; do
|
|
if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
|
|
aix_use_runtimelinking=yes
|
|
@@ -301,7 +280,7 @@
|
|
strings "$collect2name" | grep resolve_lib_name >/dev/null
|
|
then
|
|
# We have reworked collect2
|
|
- :
|
|
+ hardcode_direct=yes
|
|
else
|
|
# We have old collect2
|
|
hardcode_direct=unsupported
|
|
@@ -337,18 +316,14 @@
|
|
fi
|
|
;;
|
|
amigaos*)
|
|
- case "$host_cpu" in
|
|
- powerpc)
|
|
- ;;
|
|
- m68k)
|
|
- hardcode_libdir_flag_spec='-L$libdir'
|
|
- hardcode_minus_L=yes
|
|
- ;;
|
|
- esac
|
|
+ hardcode_libdir_flag_spec='-L$libdir'
|
|
+ hardcode_minus_L=yes
|
|
+ # see comment about different semantics on the GNU ld section
|
|
+ ld_shlibs=no
|
|
;;
|
|
bsdi[45]*)
|
|
;;
|
|
- cygwin* | mingw* | pw32* | cegcc*)
|
|
+ cygwin* | msys* | mingw* | pw32*)
|
|
# When not using gcc, we currently assume that we are using
|
|
# Microsoft Visual C++.
|
|
# hardcode_libdir_flag_spec is actually meaningless, as there is
|
|
@@ -358,20 +333,33 @@
|
|
;;
|
|
darwin* | rhapsody*)
|
|
hardcode_direct=no
|
|
- if { case $cc_basename in ifort*) true;; *) test "$GCC" = yes;; esac; }; then
|
|
+ if test "$GCC" = yes ; then
|
|
:
|
|
else
|
|
- ld_shlibs=no
|
|
+ case $cc_basename in
|
|
+ xlc*)
|
|
+ ;;
|
|
+ *)
|
|
+ ld_shlibs=no
|
|
+ ;;
|
|
+ esac
|
|
fi
|
|
;;
|
|
dgux*)
|
|
hardcode_libdir_flag_spec='-L$libdir'
|
|
;;
|
|
- freebsd2.[01]*)
|
|
+ freebsd1*)
|
|
+ ld_shlibs=no
|
|
+ ;;
|
|
+ freebsd2.2*)
|
|
+ hardcode_libdir_flag_spec='-R$libdir'
|
|
+ hardcode_direct=yes
|
|
+ ;;
|
|
+ freebsd2*)
|
|
hardcode_direct=yes
|
|
hardcode_minus_L=yes
|
|
;;
|
|
- freebsd* | dragonfly*)
|
|
+ freebsd* | kfreebsd*-gnu | dragonfly*)
|
|
hardcode_libdir_flag_spec='-R$libdir'
|
|
hardcode_direct=yes
|
|
;;
|
|
@@ -423,25 +411,19 @@
|
|
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
|
hardcode_libdir_separator=:
|
|
;;
|
|
- *nto* | *qnx*)
|
|
- ;;
|
|
openbsd*)
|
|
- if test -f /usr/libexec/ld.so; then
|
|
- hardcode_direct=yes
|
|
- if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
|
|
- hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
|
- else
|
|
- case "$host_os" in
|
|
- openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
|
|
- hardcode_libdir_flag_spec='-R$libdir'
|
|
- ;;
|
|
- *)
|
|
- hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
|
- ;;
|
|
- esac
|
|
- fi
|
|
+ hardcode_direct=yes
|
|
+ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
|
|
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
|
else
|
|
- ld_shlibs=no
|
|
+ case "$host_os" in
|
|
+ openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
|
|
+ hardcode_libdir_flag_spec='-R$libdir'
|
|
+ ;;
|
|
+ *)
|
|
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
|
+ ;;
|
|
+ esac
|
|
fi
|
|
;;
|
|
os2*)
|
|
@@ -489,7 +471,7 @@
|
|
ld_shlibs=yes
|
|
fi
|
|
;;
|
|
- sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
|
|
+ sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*)
|
|
;;
|
|
sysv5* | sco3.2v5* | sco5v6*)
|
|
hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
|
|
@@ -505,56 +487,34 @@
|
|
fi
|
|
|
|
# Check dynamic linker characteristics
|
|
-# Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER.
|
|
-# Unlike libtool.m4, here we don't care about _all_ names of the library, but
|
|
-# only about the one the linker finds when passed -lNAME. This is the last
|
|
-# element of library_names_spec in libtool.m4, or possibly two of them if the
|
|
-# linker has special search rules.
|
|
-library_names_spec= # the last element of library_names_spec in libtool.m4
|
|
+# Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER.
|
|
libname_spec='lib$name'
|
|
case "$host_os" in
|
|
aix3*)
|
|
- library_names_spec='$libname.a'
|
|
;;
|
|
- aix[4-9]*)
|
|
- library_names_spec='$libname$shrext'
|
|
+ aix4* | aix5*)
|
|
;;
|
|
amigaos*)
|
|
- case "$host_cpu" in
|
|
- powerpc*)
|
|
- library_names_spec='$libname$shrext' ;;
|
|
- m68k)
|
|
- library_names_spec='$libname.a' ;;
|
|
- esac
|
|
;;
|
|
beos*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
bsdi[45]*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
- cygwin* | mingw* | pw32* | cegcc*)
|
|
+ cygwin* | msys* | mingw* | pw32*)
|
|
shrext=.dll
|
|
- library_names_spec='$libname.dll.a $libname.lib'
|
|
;;
|
|
darwin* | rhapsody*)
|
|
shrext=.dylib
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
dgux*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
- freebsd[23].*)
|
|
- library_names_spec='$libname$shrext$versuffix'
|
|
+ freebsd1*)
|
|
+ ;;
|
|
+ kfreebsd*-gnu)
|
|
;;
|
|
freebsd* | dragonfly*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
gnu*)
|
|
- library_names_spec='$libname$shrext'
|
|
- ;;
|
|
- haiku*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
hpux9* | hpux10* | hpux11*)
|
|
case $host_cpu in
|
|
@@ -568,13 +528,10 @@
|
|
shrext=.sl
|
|
;;
|
|
esac
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
- interix[3-9]*)
|
|
- library_names_spec='$libname$shrext'
|
|
+ interix3*)
|
|
;;
|
|
irix5* | irix6* | nonstopux*)
|
|
- library_names_spec='$libname$shrext'
|
|
case "$host_os" in
|
|
irix5* | nonstopux*)
|
|
libsuff= shlibsuff=
|
|
@@ -591,62 +548,41 @@
|
|
;;
|
|
linux*oldld* | linux*aout* | linux*coff*)
|
|
;;
|
|
- linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
|
- library_names_spec='$libname$shrext'
|
|
+ linux*)
|
|
;;
|
|
knetbsd*-gnu)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
netbsd*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
newsos6)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
- *nto* | *qnx*)
|
|
- library_names_spec='$libname$shrext'
|
|
+ nto-qnx*)
|
|
;;
|
|
openbsd*)
|
|
- library_names_spec='$libname$shrext$versuffix'
|
|
;;
|
|
os2*)
|
|
libname_spec='$name'
|
|
shrext=.dll
|
|
- library_names_spec='$libname.a'
|
|
;;
|
|
osf3* | osf4* | osf5*)
|
|
- library_names_spec='$libname$shrext'
|
|
- ;;
|
|
- rdos*)
|
|
;;
|
|
solaris*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
sunos4*)
|
|
- library_names_spec='$libname$shrext$versuffix'
|
|
;;
|
|
sysv4 | sysv4.3*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
sysv4*MP*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
|
|
- library_names_spec='$libname$shrext'
|
|
- ;;
|
|
- tpf*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
uts4*)
|
|
- library_names_spec='$libname$shrext'
|
|
;;
|
|
esac
|
|
|
|
sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
|
|
escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
|
shlibext=`echo "$shrext" | sed -e 's,^\.,,'`
|
|
-escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
|
-escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
|
escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
|
|
|
LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
|
|
@@ -660,12 +596,6 @@
|
|
# Shared library suffix (normally "so").
|
|
shlibext="$shlibext"
|
|
|
|
-# Format of library name prefix.
|
|
-libname_spec="$escaped_libname_spec"
|
|
-
|
|
-# Library names that the linker finds when passed -lNAME.
|
|
-library_names_spec="$escaped_library_names_spec"
|
|
-
|
|
# Flag to hardcode \$libdir into a binary during linking.
|
|
# This must work even if \$libdir does not exist.
|
|
hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec"
|
|
diff -aur tar-1.29/gnu/Makefile.am.orig tar-1.29/gnu/Makefile.am > patch
|
|
--- tar-1.29/gnu/Makefile.am.orig 2016-06-05 23:34:15.080285200 -0400
|
|
+++ tar-1.29/gnu/Makefile.am 2016-06-05 23:35:24.990195100 -0400
|
|
@@ -1109,7 +1109,7 @@
|
|
case '$(host_os)' in \
|
|
darwin[56]*) \
|
|
need_charset_alias=true ;; \
|
|
- darwin* | cygwin* | mingw* | pw32* | cegcc*) \
|
|
+ darwin* | cygwin* | msys* | mingw* | pw32* | cegcc*) \
|
|
need_charset_alias=false ;; \
|
|
*) \
|
|
need_charset_alias=true ;; \
|
|
diff -aur tar-1.29/gnu/Makefile.in.orig tar-1.29/gnu/Makefile.in
|
|
--- tar-1.29/gnu/Makefile.in.orig 2016-05-16 04:51:58.000000000 -0400
|
|
+++ tar-1.29/gnu/Makefile.in 2016-06-06 01:17:15.199311400 -0400
|
|
@@ -1,4 +1,4 @@
|
|
-# Makefile.in generated by automake 1.14 from Makefile.am.
|
|
+# Makefile.in generated by automake 1.14.1 from Makefile.am.
|
|
# @configure_input@
|
|
|
|
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
|
@@ -2388,7 +2388,7 @@
|
|
case '$(host_os)' in \
|
|
darwin[56]*) \
|
|
need_charset_alias=true ;; \
|
|
- darwin* | cygwin* | mingw* | pw32* | cegcc*) \
|
|
+ darwin* | cygwin* | msys* | mingw* | pw32* | cegcc*) \
|
|
need_charset_alias=false ;; \
|
|
*) \
|
|
need_charset_alias=true ;; \
|
|
diff -Naur tar-1.27-orig/m4/btowc.m4 tar-1.27/m4/btowc.m4
|
|
--- tar-1.27-orig/m4/btowc.m4 2013-06-29 09:53:43.000000000 +0400
|
|
+++ tar-1.27/m4/btowc.m4 2013-10-20 10:12:46.463800000 +0400
|
|
@@ -49,7 +49,7 @@
|
|
changequote(,)dnl
|
|
case "$host_os" in
|
|
# Guess no on Cygwin.
|
|
- cygwin*) gl_cv_func_btowc_nul="guessing no" ;;
|
|
+ cygwin* | msys*) gl_cv_func_btowc_nul="guessing no" ;;
|
|
# Guess yes otherwise.
|
|
*) gl_cv_func_btowc_nul="guessing yes" ;;
|
|
esac
|
|
diff -Naur tar-1.27-orig/m4/double-slash-root.m4 tar-1.27/m4/double-slash-root.m4
|
|
--- tar-1.27-orig/m4/double-slash-root.m4 2013-06-29 09:53:43.000000000 +0400
|
|
+++ tar-1.27/m4/double-slash-root.m4 2013-10-20 10:12:46.463800000 +0400
|
|
@@ -16,7 +16,7 @@
|
|
# special semantics and is distinct from /, please report it to
|
|
# <bug-gnulib@gnu.org>.
|
|
case $host in
|
|
- *-cygwin | i370-ibm-openedition)
|
|
+ *-cygwin | *-msys | i370-ibm-openedition)
|
|
gl_cv_double_slash_root=yes ;;
|
|
*)
|
|
# Be optimistic and assume that / and // are the same when we
|
|
diff -aur tar-1.29/m4/dup2.m4.orig tar-1.29/m4/dup2.m4
|
|
--- tar-1.29/m4/dup2.m4.orig 2015-08-03 07:09:09.000000000 -0400
|
|
+++ tar-1.29/m4/dup2.m4 2016-06-06 01:20:03.122070700 -0400
|
|
@@ -68,7 +68,7 @@
|
|
[case "$host_os" in
|
|
mingw*) # on this platform, dup2 always returns 0 for success
|
|
gl_cv_func_dup2_works="guessing no" ;;
|
|
- cygwin*) # on cygwin 1.5.x, dup2(1,1) returns 0
|
|
+ cygwin* | msys*) # on cygwin 1.5.x, dup2(1,1) returns 0
|
|
gl_cv_func_dup2_works="guessing no" ;;
|
|
aix* | freebsd*)
|
|
# on AIX 7.1 and FreeBSD 6.1, dup2 (1,toobig) gives EMFILE,
|
|
diff -aur tar-1.29/m4/fcntl.m4.orig tar-1.29/m4/fcntl.m4
|
|
--- tar-1.29/m4/fcntl.m4.orig 2016-06-06 02:47:08.538667100 -0400
|
|
+++ tar-1.29/m4/fcntl.m4 2016-06-06 03:42:16.980678800 -0400
|
|
@@ -58,7 +58,7 @@
|
|
[gl_cv_func_fcntl_f_dupfd_works=yes],
|
|
[gl_cv_func_fcntl_f_dupfd_works=no],
|
|
[case $host_os in
|
|
- aix* | cygwin* | haiku*)
|
|
+ aix* | cygwin* | msys* | haiku*)
|
|
gl_cv_func_fcntl_f_dupfd_works="guessing no" ;;
|
|
*) gl_cv_func_fcntl_f_dupfd_works="guessing yes" ;;
|
|
esac])])
|
|
diff -Naur tar-1.27-orig/m4/getcwd.m4 tar-1.27/m4/getcwd.m4
|
|
--- tar-1.27-orig/m4/getcwd.m4 2013-06-29 09:53:43.000000000 +0400
|
|
+++ tar-1.27/m4/getcwd.m4 2013-10-20 10:17:47.662200000 +0400
|
|
@@ -49,7 +49,7 @@
|
|
# Guess yes on glibc systems.
|
|
*-gnu*) gl_cv_func_getcwd_null="guessing yes";;
|
|
# Guess yes on Cygwin.
|
|
- cygwin*) gl_cv_func_getcwd_null="guessing yes";;
|
|
+ cygwin* | msys*) gl_cv_func_getcwd_null="guessing yes";;
|
|
# If we don't know, assume the worst.
|
|
*) gl_cv_func_getcwd_null="guessing no";;
|
|
esac
|
|
diff -aur tar-1.29/m4/getdtablesize.m4.orig tar-1.29/m4/getdtablesize.m4 > patch
|
|
--- tar-1.29/m4/getdtablesize.m4.orig 2016-06-06 02:24:46.739051500 -0400
|
|
+++ tar-1.29/m4/getdtablesize.m4 2016-06-06 02:31:50.908244500 -0400
|
|
@@ -28,7 +28,7 @@
|
|
[gl_cv_func_getdtablesize_works=yes],
|
|
[gl_cv_func_getdtablesize_works=no],
|
|
[case "$host_os" in
|
|
- cygwin*) # on cygwin 1.5.25, getdtablesize() automatically grows
|
|
+ cygwin* | msys* ) # on cygwin 1.5.25, getdtablesize() automatically grows
|
|
gl_cv_func_getdtablesize_works="guessing no" ;;
|
|
*) gl_cv_func_getdtablesize_works="guessing yes" ;;
|
|
esac])
|
|
diff -Naur tar-1.27-orig/m4/malloc.m4 tar-1.27/m4/malloc.m4
|
|
--- tar-1.27-orig/m4/malloc.m4 2013-06-29 09:53:43.000000000 +0400
|
|
+++ tar-1.27/m4/malloc.m4 2013-10-20 10:20:50.369400000 +0400
|
|
@@ -30,7 +30,7 @@
|
|
[case "$host_os" in
|
|
# Guess yes on platforms where we know the result.
|
|
*-gnu* | freebsd* | netbsd* | openbsd* \
|
|
- | hpux* | solaris* | cygwin* | mingw*)
|
|
+ | hpux* | solaris* | cygwin* | msys* | mingw*)
|
|
ac_cv_func_malloc_0_nonnull=yes ;;
|
|
# If we don't know, assume the worst.
|
|
*) ac_cv_func_malloc_0_nonnull=no ;;
|
|
diff -aur tar-1.29/m4/printf.m4.orig tar-1.29/m4/printf.m4
|
|
--- tar-1.29/m4/printf.m4.orig 2015-08-03 07:09:09.000000000 -0400
|
|
+++ tar-1.29/m4/printf.m4 2016-06-06 01:23:44.286792800 -0400
|
|
@@ -720,7 +720,7 @@
|
|
openbsd*) gl_cv_func_printf_directive_ls="guessing no";;
|
|
irix*) gl_cv_func_printf_directive_ls="guessing no";;
|
|
solaris*) gl_cv_func_printf_directive_ls="guessing no";;
|
|
- cygwin*) gl_cv_func_printf_directive_ls="guessing no";;
|
|
+ cygwin* | msys*) gl_cv_func_printf_directive_ls="guessing no";;
|
|
beos* | haiku*) gl_cv_func_printf_directive_ls="guessing no";;
|
|
*) gl_cv_func_printf_directive_ls="guessing yes";;
|
|
esac
|
|
@@ -797,7 +797,7 @@
|
|
[
|
|
changequote(,)dnl
|
|
case "$host_os" in
|
|
- cygwin*) gl_cv_func_printf_flag_grouping="guessing no";;
|
|
+ cygwin* | msys*) gl_cv_func_printf_flag_grouping="guessing no";;
|
|
netbsd*) gl_cv_func_printf_flag_grouping="guessing no";;
|
|
mingw* | pw*) gl_cv_func_printf_flag_grouping="guessing no";;
|
|
*) gl_cv_func_printf_flag_grouping="guessing yes";;
|
|
@@ -1449,7 +1449,7 @@
|
|
darwin[1-6].*) gl_cv_func_vsnprintf_zerosize_c99="guessing no";;
|
|
darwin*) gl_cv_func_vsnprintf_zerosize_c99="guessing yes";;
|
|
# Guess yes on Cygwin.
|
|
- cygwin*) gl_cv_func_vsnprintf_zerosize_c99="guessing yes";;
|
|
+ cygwin* | msys*) gl_cv_func_vsnprintf_zerosize_c99="guessing yes";;
|
|
# Guess yes on Solaris >= 2.6.
|
|
solaris2.[0-5] | solaris2.[0-5].*)
|
|
gl_cv_func_vsnprintf_zerosize_c99="guessing no";;
|
|
diff -Naur tar-1.27-orig/m4/realloc.m4 tar-1.27/m4/realloc.m4
|
|
--- tar-1.27-orig/m4/realloc.m4 2013-06-29 09:53:43.000000000 +0400
|
|
+++ tar-1.27/m4/realloc.m4 2013-10-20 10:21:10.150200000 +0400
|
|
@@ -30,7 +30,7 @@
|
|
[case "$host_os" in
|
|
# Guess yes on platforms where we know the result.
|
|
*-gnu* | freebsd* | netbsd* | openbsd* \
|
|
- | hpux* | solaris* | cygwin* | mingw*)
|
|
+ | hpux* | solaris* | cygwin* | msys* | mingw*)
|
|
ac_cv_func_realloc_0_nonnull=yes ;;
|
|
# If we don't know, assume the worst.
|
|
*) ac_cv_func_realloc_0_nonnull=no ;;
|
|
diff -Naur tar-1.27-orig/m4/unlinkdir.m4 tar-1.27/m4/unlinkdir.m4
|
|
--- tar-1.27-orig/m4/unlinkdir.m4 2013-06-29 09:53:43.000000000 +0400
|
|
+++ tar-1.27/m4/unlinkdir.m4 2013-10-20 10:12:46.495000000 +0400
|
|
@@ -25,6 +25,7 @@
|
|
linux-* | linux | \
|
|
freebsd2.2* | freebsd[[3-9]]* | freebsd[[1-9]][[0-9]]* | \
|
|
cygwin | \
|
|
+ msys | \
|
|
mingw*)
|
|
AC_DEFINE([UNLINK_CANNOT_UNLINK_DIR], [1],
|
|
[Define to 1 if unlink (dir) cannot possibly succeed.]);;
|