New module 'waitpid'.
[gnulib.git] / modules / sys_wait
1 Description:
2 A <sys/wait.h> for systems with missing declarations.
3
4 Files:
5 lib/sys_wait.in.h
6 m4/sys_wait_h.m4
7
8 Depends-on:
9 c++defs
10 include_next
11 warn-on-use
12 waitpid
13
14 configure.ac:
15 gl_SYS_WAIT_H
16 AC_PROG_MKDIR_P
17
18 Makefile.am:
19 BUILT_SOURCES += sys/wait.h
20
21 # We need the following in order to create <sys/wait.h> when the system
22 # has one that is incomplete.
23 sys/wait.h: sys_wait.in.h $(CXXDEFS_H) $(WARN_ON_USE_H)
24         $(AM_V_at)$(MKDIR_P) sys
25         $(AM_V_GEN)rm -f $@-t $@ && \
26         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
27           sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
28               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
29               -e 's|@''NEXT_SYS_WAIT_H''@|$(NEXT_SYS_WAIT_H)|g' \
30               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
31               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
32               < $(srcdir)/sys_wait.in.h; \
33         } > $@-t && \
34         mv $@-t $@
35 MOSTLYCLEANFILES += sys/wait.h sys/wait.h-t
36 MOSTLYCLEANDIRS += sys
37
38 Include:
39 <sys/wait.h>
40
41 License:
42 LGPLv2+
43
44 Maintainer:
45 Bruno Haible