summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2018-12-23 18:21:58 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2018-12-23 18:22:23 +0100
commitf68e884496f6a534f2234bf154d6797b829e9d15 (patch)
tree80aa1b590de16a576f332ff0c45699d87f2e819b /sys-devel/remake/files
parentx11-terms/terminology: Security cleanup (diff)
downloadgentoo-f68e884496f6a534f2234bf154d6797b829e9d15.tar.gz
gentoo-f68e884496f6a534f2234bf154d6797b829e9d15.tar.bz2
gentoo-f68e884496f6a534f2234bf154d6797b829e9d15.zip
sys-devel/remake: Version bump
Fixes the Perl 5.26 test failure and the glob-related build failure Bug: https://bugs.gentoo.org/636198 Closes: https://bugs.gentoo.org/649060 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'sys-devel/remake/files')
-rw-r--r--sys-devel/remake/files/make-4.2.1-glob-v2.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/sys-devel/remake/files/make-4.2.1-glob-v2.patch b/sys-devel/remake/files/make-4.2.1-glob-v2.patch
new file mode 100644
index 000000000000..e55a7790a3f6
--- /dev/null
+++ b/sys-devel/remake/files/make-4.2.1-glob-v2.patch
@@ -0,0 +1,30 @@
+http://git.savannah.gnu.org/cgit/make.git/commit/?id=48c8a116a914a325a0497721f5d8b58d5bba34d4
+
+--- make-4.2.1/configure 2016-06-11 01:03:21.000000000 +0200
++++ make-4.2.1/configure 2016-06-11 01:03:21.000000000 +0200
+@@ -11481,10 +11481,9 @@
+ #include <glob.h>
+ #include <fnmatch.h>
+
+-#define GLOB_INTERFACE_VERSION 1
+ #if !defined _LIBC && defined __GNU_LIBRARY__ && __GNU_LIBRARY__ > 1
+ # include <gnu-versions.h>
+-# if _GNU_GLOB_INTERFACE_VERSION == GLOB_INTERFACE_VERSION
++# if _GNU_GLOB_INTERFACE_VERSION == 1 || _GNU_GLOB_INTERFACE_VERSION == 2
+ gnu glob
+ # endif
+ #endif
+--- make-4.2.1/configure.ac 2016-06-06 14:27:31.000000000 +0200
++++ make-4.2.1/configure.ac 2016-06-06 14:27:31.000000000 +0200
+@@ -399,10 +399,9 @@
+ #include <glob.h>
+ #include <fnmatch.h>
+
+-#define GLOB_INTERFACE_VERSION 1
+ #if !defined _LIBC && defined __GNU_LIBRARY__ && __GNU_LIBRARY__ > 1
+ # include <gnu-versions.h>
+-# if _GNU_GLOB_INTERFACE_VERSION == GLOB_INTERFACE_VERSION
++# if _GNU_GLOB_INTERFACE_VERSION == 1 || _GNU_GLOB_INTERFACE_VERSION == 2
+ gnu glob
+ # endif
+ #endif],