Add CVS checkout update instructions.
[gnulib.git] / modules / stdlib
1 Description:
2 A GNU-like <stdlib.h>.
3
4 Files:
5 lib/stdlib_.h
6 m4/stdlib_h.m4
7
8 Depends-on:
9 absolute-header
10 link-warning
11 unistd
12
13 configure.ac:
14 gl_STDLIB_H
15
16 Makefile.am:
17 BUILT_SOURCES += stdlib.h
18
19 # We need the following in order to create <stdlib.h> when the system
20 # doesn't have one that works with the given compiler.
21 stdlib.h: stdlib_.h
22         rm -f $@-t $@
23         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
24           sed -e 's/@''INCLUDE_NEXT''@/$(INCLUDE_NEXT)/g' \
25               -e 's|@''NEXT_STDLIB_H''@|$(NEXT_STDLIB_H)|g' \
26               -e 's|@''GNULIB_MALLOC_POSIX''@|$(GNULIB_MALLOC_POSIX)|g' \
27               -e 's|@''GNULIB_REALLOC_POSIX''@|$(GNULIB_REALLOC_POSIX)|g' \
28               -e 's|@''GNULIB_CALLOC_POSIX''@|$(GNULIB_CALLOC_POSIX)|g' \
29               -e 's|@''GNULIB_GETSUBOPT''@|$(GNULIB_GETSUBOPT)|g' \
30               -e 's|@''GNULIB_MKDTEMP''@|$(GNULIB_MKDTEMP)|g' \
31               -e 's|@''GNULIB_MKSTEMP''@|$(GNULIB_MKSTEMP)|g' \
32               -e 's|@''HAVE_CALLOC_POSIX''@|$(HAVE_CALLOC_POSIX)|g' \
33               -e 's|@''HAVE_GETSUBOPT''@|$(HAVE_GETSUBOPT)|g' \
34               -e 's|@''HAVE_MALLOC_POSIX''@|$(HAVE_MALLOC_POSIX)|g' \
35               -e 's|@''HAVE_MKDTEMP''@|$(HAVE_MKDTEMP)|g' \
36               -e 's|@''HAVE_REALLOC_POSIX''@|$(HAVE_REALLOC_POSIX)|g' \
37               -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \
38               -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \
39               < $(srcdir)/stdlib_.h; \
40         } > $@-t
41         mv $@-t $@
42 MOSTLYCLEANFILES += stdlib.h stdlib.h-t
43
44 Include:
45 #include <stdlib.h>
46
47 License:
48 LGPL
49
50 Maintainer:
51 all