update debian copyright: tweak clscan and then manually fixup: revisit next release
[gnulib.git] / modules / ctype
1 Description:
2 A <ctype.h> that conforms to C99.
3
4 Files:
5 lib/ctype.in.h
6 m4/ctype.m4
7
8 Depends-on:
9 include_next
10 snippet/c++defs
11 snippet/warn-on-use
12
13 configure.ac:
14 gl_CTYPE_H
15
16 Makefile.am:
17 BUILT_SOURCES += ctype.h
18
19 # We need the following in order to create <ctype.h> when the system
20 # doesn't have one that works with the given compiler.
21 ctype.h: ctype.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H)
22         $(AM_V_GEN)rm -f $@-t $@ && \
23         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
24           sed -e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
25               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
26               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
27               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
28               -e 's|@''NEXT_CTYPE_H''@|$(NEXT_CTYPE_H)|g' \
29               -e 's/@''GNULIB_ISBLANK''@/$(GNULIB_ISBLANK)/g' \
30               -e 's/@''HAVE_ISBLANK''@/$(HAVE_ISBLANK)/g' \
31               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
32               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
33               < $(srcdir)/ctype.in.h; \
34         } > $@-t && \
35         mv $@-t $@
36 MOSTLYCLEANFILES += ctype.h ctype.h-t
37
38 Include:
39 <ctype.h>
40
41 License:
42 LGPLv2+
43
44 Maintainer:
45 Bruno Haible