Andreas Schwab
294e777977
- test-driver.patch: let perl find test_driver.pl - glob-interface.patch: Support GLIBC glob interface version 2 OBS-URL: https://build.opensuse.org/request/show/568519 OBS-URL: https://build.opensuse.org/package/show/Base:System/make?expand=0&rev=59
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
* configure.ac: Support GLIBC glob interface version 2
|
|
|
|
Index: make-4.2.1/configure
|
|
===================================================================
|
|
--- make-4.2.1.orig/configure
|
|
+++ make-4.2.1/configure
|
|
@@ -11481,10 +11481,9 @@ else
|
|
#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
|
|
Index: make-4.2.1/configure.ac
|
|
===================================================================
|
|
--- make-4.2.1.orig/configure.ac
|
|
+++ make-4.2.1/configure.ac
|
|
@@ -399,10 +399,9 @@ AC_CACHE_CHECK([if system libc has GNU g
|
|
#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],
|