From a21a26e8f7e5f21694e12f2f688d67d59e816dec Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Fri, 1 Jan 2010 10:33:57 +0100 Subject: [PATCH] localename: Avoid gcc warning. --- ChangeLog | 6 ++++++ lib/localename.c | 22 +++++++++++++--------- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 787617bd3a..147dfec097 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-01-01 Bruno Haible + + localename: Avoid gcc warning. + * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this + function if it is not used. + 2010-01-01 Jim Meyering version-etc: set COPYRIGHT_YEAR to 2010 diff --git a/lib/localename.c b/lib/localename.c index 03328b9ec1..c124da9b04 100644 --- a/lib/localename.c +++ b/lib/localename.c @@ -1,5 +1,5 @@ /* Determine name of the currently selected locale. - Copyright (C) 1995-1999, 2000-2009 Free Software Foundation, Inc. + Copyright (C) 1995-1999, 2000-2010 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published @@ -2592,20 +2592,22 @@ struniq (const char *string) #endif +#if defined IN_LIBINTL || HAVE_USELOCALE + /* Like gl_locale_name_thread, except that the result is not in storage of indefinite extent. */ -#if !defined IN_LIBINTL +# if !defined IN_LIBINTL static -#endif +# endif const char * gl_locale_name_thread_unsafe (int category, const char *categoryname) { -#if HAVE_USELOCALE +# if HAVE_USELOCALE { locale_t thread_locale = uselocale (NULL); if (thread_locale != LC_GLOBAL_LOCALE) { -# if __GLIBC__ >= 2 +# if __GLIBC__ >= 2 /* Work around an incorrect definition of the _NL_LOCALE_NAME macro in glibc < 2.12. See . */ @@ -2616,8 +2618,8 @@ gl_locale_name_thread_unsafe (int category, const char *categoryname) nl_langinfo (_NL_LOCALE_NAME (category)). */ name = thread_locale->__names[category]; return name; -# endif -# if defined __APPLE__ && defined __MACH__ /* MacOS X */ +# endif +# if defined __APPLE__ && defined __MACH__ /* MacOS X */ /* The locale name is found deep in an undocumented data structure. Since it's stored in a buffer of size 32 and newlocale() rejects locale names of length > 31, we can assume that it is NUL terminated @@ -2715,13 +2717,15 @@ gl_locale_name_thread_unsafe (int category, const char *categoryname) default: /* We shouldn't get here. */ return ""; } -# endif +# endif } } -#endif +# endif return NULL; } +#endif + const char * gl_locale_name_thread (int category, const char *categoryname) { -- 2.30.2