libposix: Add _HEADERS primaries to posix modules.
[gnulib.git] / modules / wctype
1 Description:
2 A <wctype.h> that conforms better to C99.
3
4 Files:
5 lib/wctype.in.h
6 lib/iswblank.c
7 m4/wctype_h.m4
8 m4/wint_t.m4
9
10 Depends-on:
11 include_next
12 c++defs
13 warn-on-use
14
15 configure.ac:
16 gl_WCTYPE_H
17
18 Makefile.am:
19 nodist_pkginclude_HEADERS += wctype.h
20
21 BUILT_SOURCES += wctype.h
22
23 # We need the following in order to create <wctype.h> when the system
24 # doesn't have one that works with the given compiler.
25 wctype.h: wctype.in.h $(CXXDEFS_H) $(WARN_ON_USE_H)
26         $(AM_V_GEN)rm -f $@-t $@ && \
27         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
28           sed -e 's/@''HAVE_WCTYPE_H''@/$(HAVE_WCTYPE_H)/g' \
29               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
30               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
31               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
32               -e 's|@''NEXT_WCTYPE_H''@|$(NEXT_WCTYPE_H)|g' \
33               -e 's/@''HAVE_ISWBLANK''@/$(HAVE_ISWBLANK)/g' \
34               -e 's/@''HAVE_ISWCNTRL''@/$(HAVE_ISWCNTRL)/g' \
35               -e 's/@''HAVE_WINT_T''@/$(HAVE_WINT_T)/g' \
36               -e 's/@''REPLACE_ISWBLANK''@/$(REPLACE_ISWBLANK)/g' \
37               -e 's/@''REPLACE_ISWCNTRL''@/$(REPLACE_ISWCNTRL)/g' \
38               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
39               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
40               < $(srcdir)/wctype.in.h; \
41         } > $@-t && \
42         mv $@-t $@
43 MOSTLYCLEANFILES += wctype.h wctype.h-t
44
45 Include:
46 <wctype.h>
47
48 License:
49 LGPLv2+
50
51 Maintainer:
52 all