]> Savannah Git Hosting - gnulib.git/commitdiff
vasnwprintf-posix: More details about the glibc bug.
authorBruno Haible <bruno@clisp.org>
Sun, 9 Apr 2023 18:34:48 +0000 (20:34 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 9 Apr 2023 18:35:39 +0000 (20:35 +0200)
* doc/posix-functions/swprintf.texi: Add comment.
* m4/printf.m4 (gl_SWPRINTF_DIRECTIVE_LA): Update cross-compilation
guess.

ChangeLog
doc/posix-functions/swprintf.texi
m4/printf.m4

index e50d3bdb9d447f3ca8aac3f878fc62a9cd5f4cbe..9940eb2a49be9cf5c50d5e04d0413aedd0121826 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2023-04-09  Bruno Haible  <bruno@clisp.org>
+
+       vasnwprintf-posix: More details about the glibc bug.
+       * doc/posix-functions/swprintf.texi: Add comment.
+       * m4/printf.m4 (gl_SWPRINTF_DIRECTIVE_LA): Update cross-compilation
+       guess.
+
 2023-04-08  Bruno Haible  <bruno@clisp.org>
 
        doc: Mention another Haiku bug.
index fe36bc215af1887ac1ebb5f9eda7c591b4c07401..649b541ed0691831cbcf5f3a86b44e6e4ca2c7e7 100644 (file)
@@ -38,6 +38,7 @@ On Windows, this function does not take a buffer size as second argument.
 @item
 This function produces wrong values for the @samp{La} directive
 on some platforms:
+@c https://sourceware.org/bugzilla/show_bug.cgi?id=13726
 glibc 2.15,
 @c https://dev.haiku-os.org/ticket/18353
 Haiku.
index f513da0c84c2b3627ef6cf944ee89cb513ca4c1b..efb85a57afdd69014cc3c8174040548a2f64d5f4 100644 (file)
@@ -1,4 +1,4 @@
-# printf.m4 serial 81
+# printf.m4 serial 82
 dnl Copyright (C) 2003, 2007-2023 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -1988,7 +1988,7 @@ int main ()
              AC_EGREP_CPP([Unlucky], [
                #include <features.h>
                #ifdef __GNU_LIBRARY__
-                #if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 17) || (__GLIBC__ > 2)) && !defined __UCLIBC__
+                #if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 16) || (__GLIBC__ > 2)) && !defined __UCLIBC__
                  Unlucky
                 #endif
                #endif