verify: new macro 'assume'
[gnulib.git] / modules / locale
1 Description:
2 A <locale.h> that conforms to POSIX.
3
4 Files:
5 lib/locale.in.h
6 m4/locale_h.m4
7
8 Depends-on:
9 extensions
10 include_next
11 snippet/arg-nonnull
12 snippet/c++defs
13 snippet/warn-on-use
14 stddef
15
16 configure.ac:
17 gl_LOCALE_H
18
19 Makefile.am:
20 BUILT_SOURCES += locale.h
21
22 # We need the following in order to create <locale.h> when the system
23 # doesn't have one that provides all definitions.
24 locale.h: locale.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
25         $(AM_V_GEN)rm -f $@-t $@ && \
26         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
27           sed -e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
28               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
29               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
30               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
31               -e 's|@''NEXT_LOCALE_H''@|$(NEXT_LOCALE_H)|g' \
32               -e 's/@''GNULIB_LOCALECONV''@/$(GNULIB_LOCALECONV)/g' \
33               -e 's/@''GNULIB_SETLOCALE''@/$(GNULIB_SETLOCALE)/g' \
34               -e 's/@''GNULIB_DUPLOCALE''@/$(GNULIB_DUPLOCALE)/g' \
35               -e 's|@''HAVE_DUPLOCALE''@|$(HAVE_DUPLOCALE)|g' \
36               -e 's|@''HAVE_XLOCALE_H''@|$(HAVE_XLOCALE_H)|g' \
37               -e 's|@''REPLACE_LOCALECONV''@|$(REPLACE_LOCALECONV)|g' \
38               -e 's|@''REPLACE_SETLOCALE''@|$(REPLACE_SETLOCALE)|g' \
39               -e 's|@''REPLACE_DUPLOCALE''@|$(REPLACE_DUPLOCALE)|g' \
40               -e 's|@''REPLACE_STRUCT_LCONV''@|$(REPLACE_STRUCT_LCONV)|g' \
41               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
42               -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
43               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
44               < $(srcdir)/locale.in.h; \
45         } > $@-t && \
46         mv $@-t $@
47 MOSTLYCLEANFILES += locale.h locale.h-t
48
49 Include:
50 <locale.h>
51
52 License:
53 LGPLv2+
54
55 Maintainer:
56 Bruno Haible