diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-11-23 22:50:34 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-11-23 23:51:02 +0100 |
commit | 414e44412c2ebea80028d56bc80559e854524c6b (patch) | |
tree | e3867695bc81792020355ef6dc5440d6975da567 /lib/locale.in.h | |
parent | a270e133f390169b4d621ef139128a2b7ed30372 (diff) | |
download | guile-414e44412c2ebea80028d56bc80559e854524c6b.tar.gz |
Use Gnulib's `locale' module.
* configure.ac: Remove test for <xlocale.h>.
* libguile/i18n.c: Remove conditional <xlocale.h> inclusion on
`HAVE_XLOCALE_H'.
* m4/gnulib-cache.m4: Add `locale' module.
Diffstat (limited to 'lib/locale.in.h')
-rw-r--r-- | lib/locale.in.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/lib/locale.in.h b/lib/locale.in.h new file mode 100644 index 000000000..6d7ab481f --- /dev/null +++ b/lib/locale.in.h @@ -0,0 +1,58 @@ +/* A POSIX <locale.h>. + Copyright (C) 2007-2009 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. */ + +#ifndef _GL_LOCALE_H + +#if __GNUC__ >= 3 +@PRAGMA_SYSTEM_HEADER@ +#endif + +/* The include_next requires a split double-inclusion guard. */ +#@INCLUDE_NEXT@ @NEXT_LOCALE_H@ + +#ifndef _GL_LOCALE_H +#define _GL_LOCALE_H + +/* NetBSD 5.0 mis-defines NULL. */ +#include <stddef.h> + +/* MacOS X 10.5 defines the locale_t type in <xlocale.h>. */ +#if @HAVE_XLOCALE_H@ +# include <xlocale.h> +#endif + +/* The LC_MESSAGES locale category is specified in POSIX, but not in ISO C. + On systems that don't define it, use the same value as GNU libintl. */ +#if !defined LC_MESSAGES +# define LC_MESSAGES 1729 +#endif + +#if @GNULIB_DUPLOCALE@ +# if @REPLACE_DUPLOCALE@ +# undef duplocale +# define duplocale rpl_duplocale +extern locale_t duplocale (locale_t locale); +# endif +#elif defined GNULIB_POSIXCHECK +# undef duplocale +# define duplocale(l) \ + (GL_LINK_WARNING ("duplocale is buggy on some glibc systems - " \ + "use gnulib module duplocale for portability"), \ + duplocale (l)) +#endif + +#endif /* _GL_LOCALE_H */ +#endif /* _GL_LOCALE_H */ |