verify: new macro 'assume'
[gnulib.git] / modules / localcharset
1 Description:
2 Return current locale's character encoding.
3
4 Notice:
5 If your package's tests make use of the locale_charset() function directly or
6 indirectly, you may need to define the CHARSETALIASDIR environment variable,
7 so that "make check" works before "make install". In Makefile.am syntax:
8 TESTS_ENVIRONMENT += @LOCALCHARSET_TESTS_ENVIRONMENT@
9
10 Files:
11 lib/localcharset.h
12 lib/localcharset.c
13 lib/config.charset
14 lib/ref-add.sin
15 lib/ref-del.sin
16 m4/codeset.m4
17 m4/fcntl-o.m4
18 m4/glibc21.m4
19 m4/localcharset.m4
20
21 Depends-on:
22 configmake
23 extensions
24
25 configure.ac:
26 gl_LOCALCHARSET
27 LOCALCHARSET_TESTS_ENVIRONMENT="CHARSETALIASDIR=\"\$(abs_top_builddir)/$gl_source_base\""
28 AC_SUBST([LOCALCHARSET_TESTS_ENVIRONMENT])
29
30 Makefile.am:
31 lib_SOURCES += localcharset.h localcharset.c
32
33 # We need the following in order to install a simple file in $(libdir)
34 # which is shared with other installed packages. We use a list of referencing
35 # packages so that "make uninstall" will remove the file if and only if it
36 # is not used by another installed package.
37 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
38 # avoid installing it.
39
40 all-local: charset.alias ref-add.sed ref-del.sed
41
42 charset_alias = $(DESTDIR)$(libdir)/charset.alias
43 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
44 install-exec-local: install-exec-localcharset
45 install-exec-localcharset: all-local
46         if test $(GLIBC21) = no; then \
47           case '$(host_os)' in \
48             darwin[56]*) \
49               need_charset_alias=true ;; \
50             darwin* | cygwin* | mingw* | pw32* | cegcc*) \
51               need_charset_alias=false ;; \
52             *) \
53               need_charset_alias=true ;; \
54           esac ; \
55         else \
56           need_charset_alias=false ; \
57         fi ; \
58         if $$need_charset_alias; then \
59           $(mkinstalldirs) $(DESTDIR)$(libdir) ; \
60         fi ; \
61         if test -f $(charset_alias); then \
62           sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
63           $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
64           rm -f $(charset_tmp) ; \
65         else \
66           if $$need_charset_alias; then \
67             sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
68             $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
69             rm -f $(charset_tmp) ; \
70           fi ; \
71         fi
72
73 uninstall-local: uninstall-localcharset
74 uninstall-localcharset: all-local
75         if test -f $(charset_alias); then \
76           sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
77           if grep '^# Packages using this file: $$' $(charset_tmp) \
78               > /dev/null; then \
79             rm -f $(charset_alias); \
80           else \
81             $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
82           fi; \
83           rm -f $(charset_tmp); \
84         fi
85
86 charset.alias: config.charset
87         $(AM_V_GEN)rm -f t-$@ $@ && \
88         $(SHELL) $(srcdir)/config.charset '$(host)' > t-$@ && \
89         mv t-$@ $@
90
91 SUFFIXES += .sed .sin
92 .sin.sed:
93         $(AM_V_GEN)rm -f t-$@ $@ && \
94         sed -e '/^#/d' -e 's/@''PACKAGE''@/$(PACKAGE)/g' $< > t-$@ && \
95         mv t-$@ $@
96
97 CLEANFILES += charset.alias ref-add.sed ref-del.sed
98
99 Include:
100 "localcharset.h"
101
102 License:
103 LGPLv2+
104
105 Maintainer:
106 Bruno Haible