]> Savannah Git Hosting - gnulib.git/commitdiff
string, wchar: Don't require undefined m4 macros (regr. today).
authorBruno Haible <bruno@clisp.org>
Sun, 19 Sep 2021 01:11:19 +0000 (03:11 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 19 Sep 2021 01:11:19 +0000 (03:11 +0200)
Reported by Colin Watson <cjwatson@debian.org> in
<https://lists.gnu.org/archive/html/bug-gnulib/2021-09/msg00078.html>.

* m4/string_h.m4 (gl_STRING_H_REQUIRE_DEFAULTS): Don't use m4_require
directly. Instead, invoke gl_STDLIB_H_REQUIRE_DEFAULTS.
* m4/wchar_h.m4 (gl_WCHAR_H_REQUIRE_DEFAULTS): Likewise.

ChangeLog
m4/string_h.m4
m4/wchar_h.m4

index 154678293e706084f23e4275f75efcd0cbf1c8d4..6bb698433b97c703b669e3f252cb5f521f8ab4bd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2021-09-18  Bruno Haible  <bruno@clisp.org>
+
+       string, wchar: Don't require undefined m4 macros (regr. today).
+       Reported by Colin Watson <cjwatson@debian.org> in
+       <https://lists.gnu.org/archive/html/bug-gnulib/2021-09/msg00078.html>.
+       * m4/string_h.m4 (gl_STRING_H_REQUIRE_DEFAULTS): Don't use m4_require
+       directly. Instead, invoke gl_STDLIB_H_REQUIRE_DEFAULTS.
+       * m4/wchar_h.m4 (gl_WCHAR_H_REQUIRE_DEFAULTS): Likewise.
+
 2021-09-18  Bruno Haible  <bruno@clisp.org>
 
        sm3-buffer tests: New module.
index 9871dac8b28611b8bff2ac3b3a8e7699a5cc57a6..e88ac9ca8531fc3ddf04ed17d2d3cc519dec7fec 100644 (file)
@@ -5,7 +5,7 @@
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 33
+# serial 34
 
 # Written by Paul Eggert.
 
@@ -94,7 +94,7 @@ AC_DEFUN([gl_STRING_H_REQUIRE_DEFAULTS],
   ])
   m4_require(GL_MODULE_INDICATOR_PREFIX[_STRING_H_MODULE_INDICATOR_DEFAULTS])
   dnl Make sure the shell variable for GNULIB_FREE_POSIX is initialized.
-  m4_require(GL_MODULE_INDICATOR_PREFIX[_STDLIB_H_MODULE_INDICATOR_DEFAULTS])
+  gl_STDLIB_H_REQUIRE_DEFAULTS
   AC_REQUIRE([gl_STRING_H_DEFAULTS])
 ])
 
index d69dbe67d9890165e4e77de968bf4962c8617dd0..9529cdd05aa9dd899522dabf30f2aec828e84169 100644 (file)
@@ -7,7 +7,7 @@ dnl with or without modifications, as long as this notice is preserved.
 
 dnl Written by Eric Blake.
 
-# wchar_h.m4 serial 54
+# wchar_h.m4 serial 55
 
 AC_DEFUN_ONCE([gl_WCHAR_H],
 [
@@ -190,7 +190,7 @@ AC_DEFUN([gl_WCHAR_H_REQUIRE_DEFAULTS],
   ])
   m4_require(GL_MODULE_INDICATOR_PREFIX[_WCHAR_H_MODULE_INDICATOR_DEFAULTS])
   dnl Make sure the shell variable for GNULIB_FREE_POSIX is initialized.
-  m4_require(GL_MODULE_INDICATOR_PREFIX[_STDLIB_H_MODULE_INDICATOR_DEFAULTS])
+  gl_STDLIB_H_REQUIRE_DEFAULTS
   AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
 ])