rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | From 9858702dbd1e137262c06765919937660879f63c Mon Sep 17 00:00:00 2001 |
| 2 | From: Paul Eggert <eggert@cs.ucla.edu> |
| 3 | Date: Sun, 24 Sep 2017 09:12:58 -0400 |
| 4 | Subject: [PATCH 2/2] glob: Do not assume glibc glob internals. |
| 5 | |
| 6 | It has been proposed that glibc glob start using gl_lstat, |
| 7 | which the API allows it to do. GNU 'make' should not get in |
| 8 | the way of this. See: |
| 9 | https://sourceware.org/ml/libc-alpha/2017-09/msg00409.html |
| 10 | |
| 11 | * dir.c (local_lstat): New function, like local_stat. |
| 12 | (dir_setup_glob): Use it to initialize gl_lstat too, as the API |
| 13 | requires. |
| 14 | --- |
| 15 | Upstream-Status: Backport |
| 16 | which is so small that it's effectively public domain. |
| 17 | |
| 18 | configure.ac | 3 +-- |
| 19 | 1 file changed, 1 insertion(+), 2 deletions(-) |
| 20 | |
| 21 | Index: make-3.81/configure.in |
| 22 | =================================================================== |
| 23 | --- make-3.81.orig/configure.in |
| 24 | +++ make-3.81/configure.in |
| 25 | @@ -348,10 +348,9 @@ AC_CACHE_VAL(make_cv_sys_gnu_glob, [ |
| 26 | #include <glob.h> |
| 27 | #include <fnmatch.h> |
| 28 | |
| 29 | -#define GLOB_INTERFACE_VERSION 1 |
| 30 | #if !defined _LIBC && defined __GNU_LIBRARY__ && __GNU_LIBRARY__ > 1 |
| 31 | # include <gnu-versions.h> |
| 32 | -# if _GNU_GLOB_INTERFACE_VERSION == GLOB_INTERFACE_VERSION |
| 33 | +if _GNU_GLOB_INTERFACE_VERSION == 1 || _GNU_GLOB_INTERFACE_VERSION == 2 |
| 34 | gnu glob |
| 35 | # endif |
| 36 | #endif |