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