* doc/posix-functions/swprintf.texi: Add comment.
* m4/printf.m4 (gl_SWPRINTF_DIRECTIVE_LA): Update cross-compilation
guess.
+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.
@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.
-# 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,
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