aboutsummaryrefslogtreecommitdiffstats
path: root/archivers/gtar/files
diff options
context:
space:
mode:
authorknu <knu@FreeBSD.org>2001-09-11 20:09:13 +0800
committerknu <knu@FreeBSD.org>2001-09-11 20:09:13 +0800
commite6c199cbd08a23970f0228445917e2707d86e286 (patch)
tree16daf0d675cd955b5373177cc1ad5b5277128dd5 /archivers/gtar/files
parent7616e14611c426fca47d4ce21aa7f9dba90259fb (diff)
downloadfreebsd-ports-gnome-e6c199cbd08a23970f0228445917e2707d86e286.tar.gz
freebsd-ports-gnome-e6c199cbd08a23970f0228445917e2707d86e286.tar.zst
freebsd-ports-gnome-e6c199cbd08a23970f0228445917e2707d86e286.zip
Update to 1.13.22.
PR: ports/30371 Submitted by: Cyrille Lefevre <clefevre@citeweb.net> Add a patch to work around a /bin/sh bug described in PR #30392. Submitted by: Christian Weisgerber <naddy@mips.inka.de>
Diffstat (limited to 'archivers/gtar/files')
-rw-r--r--archivers/gtar/files/patch-configure86
-rw-r--r--archivers/gtar/files/patch-lib_dirname_c16
-rw-r--r--archivers/gtar/files/patch-lib_prepargs_c15
3 files changed, 86 insertions, 31 deletions
diff --git a/archivers/gtar/files/patch-configure b/archivers/gtar/files/patch-configure
new file mode 100644
index 000000000000..804028c3abf4
--- /dev/null
+++ b/archivers/gtar/files/patch-configure
@@ -0,0 +1,86 @@
+--- configure.orig Wed Aug 29 23:44:29 2001
++++ configure Sat Sep 8 07:57:39 2001
+@@ -3734,9 +3734,9 @@
+ fi
+
+ test $jm_cv_func_decl_free != yes
+-
++ac_status=$?
+ cat >>confdefs.h <<EOF
+-#define HAVE_DECL_FREE $?
++#define HAVE_DECL_FREE $ac_status
+ EOF
+
+ echo "$as_me:3742: checking whether getgrgid is declared" >&5
+@@ -3791,9 +3791,9 @@
+ fi
+
+ test $jm_cv_func_decl_getgrgid != yes
+-
++ac_status=$?
+ cat >>confdefs.h <<EOF
+-#define HAVE_DECL_GETGRGID $?
++#define HAVE_DECL_GETGRGID $ac_status
+ EOF
+
+ echo "$as_me:3799: checking whether getpwuid is declared" >&5
+@@ -3848,9 +3848,9 @@
+ fi
+
+ test $jm_cv_func_decl_getpwuid != yes
+-
++ac_status=$?
+ cat >>confdefs.h <<EOF
+-#define HAVE_DECL_GETPWUID $?
++#define HAVE_DECL_GETPWUID $ac_status
+ EOF
+
+ echo "$as_me:3856: checking whether getenv is declared" >&5
+@@ -3905,9 +3905,9 @@
+ fi
+
+ test $jm_cv_func_decl_getenv != yes
+-
++ac_status=$?
+ cat >>confdefs.h <<EOF
+-#define HAVE_DECL_GETENV $?
++#define HAVE_DECL_GETENV $ac_status
+ EOF
+
+ echo "$as_me:3913: checking whether malloc is declared" >&5
+@@ -3962,9 +3962,9 @@
+ fi
+
+ test $jm_cv_func_decl_malloc != yes
+-
++ac_status=$?
+ cat >>confdefs.h <<EOF
+-#define HAVE_DECL_MALLOC $?
++#define HAVE_DECL_MALLOC $ac_status
+ EOF
+
+ echo "$as_me:3970: checking whether strtoul is declared" >&5
+@@ -4019,9 +4019,9 @@
+ fi
+
+ test $jm_cv_func_decl_strtoul != yes
+-
++ac_status=$?
+ cat >>confdefs.h <<EOF
+-#define HAVE_DECL_STRTOUL $?
++#define HAVE_DECL_STRTOUL $ac_status
+ EOF
+
+ echo "$as_me:4027: checking whether strtoull is declared" >&5
+@@ -4076,9 +4076,9 @@
+ fi
+
+ test $jm_cv_func_decl_strtoull != yes
+-
++ac_status=$?
+ cat >>confdefs.h <<EOF
+-#define HAVE_DECL_STRTOULL $?
++#define HAVE_DECL_STRTOULL $ac_status
+ EOF
+
+ echo "$as_me:4084: checking which ioctl field to test for reversed bytes" >&5
diff --git a/archivers/gtar/files/patch-lib_dirname_c b/archivers/gtar/files/patch-lib_dirname_c
deleted file mode 100644
index e3b34c334fdc..000000000000
--- a/archivers/gtar/files/patch-lib_dirname_c
+++ /dev/null
@@ -1,16 +0,0 @@
-$FreeBSD$
---- lib/dirname.c.orig Wed Jan 31 02:08:57 2001
-+++ lib/dirname.c Wed Jan 31 02:10:31 2001
-@@ -19,6 +19,12 @@
- # include <config.h>
- #endif
-
-+#if HAVE_STRING_H
-+# include <string.h>
-+#else
-+# include <strings.h>
-+#endif
-+
- #if HAVE_STDLIB_H
- # include <stdlib.h>
- #endif
diff --git a/archivers/gtar/files/patch-lib_prepargs_c b/archivers/gtar/files/patch-lib_prepargs_c
deleted file mode 100644
index 155ec9fb57a1..000000000000
--- a/archivers/gtar/files/patch-lib_prepargs_c
+++ /dev/null
@@ -1,15 +0,0 @@
-$FreeBSD$
---- lib/prepargs.c.orig Thu Nov 16 01:32:16 2000
-+++ lib/prepargs.c Thu Nov 16 01:32:58 2000
-@@ -23,6 +23,11 @@
- #endif
- #include "prepargs.h"
- #include <sys/types.h>
-+#if HAVE_STRING_H
-+# include <string.h>
-+#else
-+# include <strings.h>
-+#endif
- #include <xalloc.h>
-
- #include <ctype.h>