Add script for determining the set of symbols to export from a library.
[gnulib.git] / modules / stdarg
blob0a2f27a6c3d52a78418fe9895aa90077304f2d56
1 Description:
2 An <stdarg.h> that conforms to C99.
4 Files:
5 lib/stdarg.in.h
6 m4/stdarg.m4
8 Depends-on:
9 include_next
11 configure.ac-early:
12 dnl Some compilers (e.g., AIX 5.3 cc) need to be in c99 mode
13 dnl for the builtin va_copy to work.  gl_PROG_CC_C99 arranges for this.
14 gl_PROG_CC_C99
16 configure.ac:
17 gl_STDARG_H
19 Makefile.am:
20 BUILT_SOURCES += $(STDARG_H)
22 # We need the following in order to create <stdarg.h> when the system
23 # doesn't have one that works with the given compiler.
24 if GL_GENERATE_STDARG_H
25 stdarg.h: stdarg.in.h $(top_builddir)/config.status
26         $(AM_V_GEN)rm -f $@-t $@ && \
27         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
28           sed -e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|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_STDARG_H''@|$(NEXT_STDARG_H)|g' \
33               < $(srcdir)/stdarg.in.h; \
34         } > $@-t && \
35         mv $@-t $@
36 else
37 stdarg.h: $(top_builddir)/config.status
38         rm -f $@
39 endif
40 MOSTLYCLEANFILES += stdarg.h stdarg.h-t
42 Include:
43 <stdarg.h>
45 License:
46 LGPLv2+
48 Maintainer:
49 all