]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
__GNU_LIBRARY__ is deprecated.
authorBruno Haible <bruno@clisp.org>
Wed, 25 Oct 2006 11:43:26 +0000 (11:43 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:14:13 +0000 (12:14 +0200)
gettext-runtime/intl/ChangeLog
gettext-runtime/intl/localename.c

index 7859d9bf4a07bf12af2c66974cc060215ecd077d..3d7b18762b8a3db01c7d8f8d60afb02ecf82d566 100644 (file)
@@ -2,6 +2,11 @@
 
        * gettext-0.16 released.
 
+2006-10-24  Bruno Haible  <bruno@clisp.org>
+
+       * localename.c (HAVE_LOCALE_NULL): Test __GLIBC__ instead of
+       __GNU_LIBRARY__.
+
 2006-10-24  Bruno Haible  <bruno@clisp.org>
 
        * libgnuintl.h.in (LIBINTL_VERSION): Bump to 0.16.
index a37097084a9e443316ebdbd48270925ea27068eb..e1b4615a057029de56590c5387834ba733ed626d 100644 (file)
@@ -973,7 +973,7 @@ _nl_locale_name_canonicalize (char *name)
    However it does not specify the exact format.  Neither do SUSV2 and
    ISO C 99.  So we can use this feature only on selected systems (e.g.
    those using GNU C Library).  */
-#if defined _LIBC || (defined __GNU_LIBRARY__ && __GNU_LIBRARY__ >= 2)
+#if defined _LIBC || (defined __GLIBC__ && __GLIBC__ >= 2)
 # define HAVE_LOCALE_NULL
 #endif