summaryrefslogtreecommitdiff
path: root/net-misc/wget/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-05-31 20:59:14 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-05-31 20:59:14 +0100
commite748ba9741f6540f4675c23e3e37b73e822c13a4 (patch)
tree23dece8beabb3a3d7c6c0273b0eb40b21c62a889 /net-misc/wget/files
parent908778078736bd36f7a60a2d576d415cb8e000fa (diff)
gentoo resync : 31.05.2021
Diffstat (limited to 'net-misc/wget/files')
-rw-r--r--net-misc/wget/files/wget-1.21-avoid_bashisms.patch26
-rw-r--r--net-misc/wget/files/wget-1.21-avoid_eautoreconf.patch11
-rw-r--r--net-misc/wget/files/wget-1.21-gnulib-utime-errno.patch30
3 files changed, 0 insertions, 67 deletions
diff --git a/net-misc/wget/files/wget-1.21-avoid_bashisms.patch b/net-misc/wget/files/wget-1.21-avoid_bashisms.patch
deleted file mode 100644
index 478621ecb594..000000000000
--- a/net-misc/wget/files/wget-1.21-avoid_bashisms.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From a9092887e0e98877a205e9052930692f35fb179e Mon Sep 17 00:00:00 2001
-From: Matt Whitlock <gentoo@mattwhitlock.name>
-Date: Sat, 2 Jan 2021 16:27:57 +0100
-Subject: [PATCH] configure.ac: Don't use bashisms
-
-Gentoo-bug: https://bugs.gentoo.org/762946
----
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 96adf13b..f6268fd5 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -978,7 +978,7 @@ AM_CONDITIONAL([IRI_IS_ENABLED], [test "X$iri" != "Xno"])
- AM_CONDITIONAL([WITH_SSL], [test "X$with_ssl" != "Xno"])
- AM_CONDITIONAL([METALINK_IS_ENABLED], [test "X$with_metalink" != "Xno"])
- AM_CONDITIONAL([WITH_XATTR], [test "X$ENABLE_XATTR" != "Xno"])
--AM_CONDITIONAL([WITH_NTLM], [test "X$ENABLE_NTLM" == "Xyes"])
-+AM_CONDITIONAL([WITH_NTLM], [test "X$ENABLE_NTLM" = "Xyes"])
-
- dnl
- dnl Create output
---
-2.30.0
-
diff --git a/net-misc/wget/files/wget-1.21-avoid_eautoreconf.patch b/net-misc/wget/files/wget-1.21-avoid_eautoreconf.patch
deleted file mode 100644
index 0e02851a2577..000000000000
--- a/net-misc/wget/files/wget-1.21-avoid_eautoreconf.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/configure
-+++ b/configure
-@@ -55925,7 +55925,7 @@
- WITH_XATTR_FALSE=
- fi
-
-- if test "X$ENABLE_NTLM" == "Xyes"; then
-+ if test "X$ENABLE_NTLM" = "Xyes"; then
- WITH_NTLM_TRUE=
- WITH_NTLM_FALSE='#'
- else
diff --git a/net-misc/wget/files/wget-1.21-gnulib-utime-errno.patch b/net-misc/wget/files/wget-1.21-gnulib-utime-errno.patch
deleted file mode 100644
index 546028c83df0..000000000000
--- a/net-misc/wget/files/wget-1.21-gnulib-utime-errno.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 6a76832db224ac5671599ce332717f985a2addc7 Mon Sep 17 00:00:00 2001
-From: Bruno Haible <bruno@clisp.org>
-Date: Thu, 31 Dec 2020 17:16:57 +0100
-Subject: utime: Fix compilation error on macOS and Solaris 9 (regr.
- 2020-12-24).
-
-Reported by Tom G. Christensen <tgc@jupiterrise.com> in
-<https://lists.gnu.org/archive/html/bug-gnulib/2020-12/msg00295.html>.
-
-* lib/utime.c: Include <errno.h>.
----
- ChangeLog | 7 +++++++
- lib/utime.c | 1 +
- 2 files changed, 8 insertions(+)
-
-diff --git a/lib/utime.c b/lib/utime.c
-index bf7d7c534..337217950 100644
---- a/lib/utime.c
-+++ b/lib/utime.c
-@@ -261,6 +261,7 @@ utime (const char *name, const struct utimbuf *ts)
-
- #else
-
-+# include <errno.h>
- # include <sys/stat.h>
- # include "filename.h"
-
---
-cgit v1.2.1
-