timespec_get: New module.
[gnulib.git] / modules / sys_wait
blob73ce50b6e73c6d578cf05003eecce4ec20c2a12b
1 Description:
2 A <sys/wait.h> for systems with missing declarations.
4 Files:
5 lib/sys_wait.in.h
6 m4/sys_wait_h.m4
7 m4/pid_t.m4
9 Depends-on:
10 include_next
11 snippet/c++defs
12 snippet/warn-on-use
14 configure.ac:
15 gl_SYS_WAIT_H
16 AC_PROG_MKDIR_P
18 Makefile.am:
19 BUILT_SOURCES += sys/wait.h
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 $(top_builddir)/config.status $(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|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
28               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
29               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
30               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
31               -e 's|@''NEXT_SYS_WAIT_H''@|$(NEXT_SYS_WAIT_H)|g' \
32               -e 's/@''GNULIB_WAITPID''@/$(GNULIB_WAITPID)/g' \
33               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
34               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
35               < $(srcdir)/sys_wait.in.h; \
36         } > $@-t && \
37         mv $@-t $@
38 MOSTLYCLEANFILES += sys/wait.h sys/wait.h-t
39 MOSTLYCLEANDIRS += sys
41 Include:
42 <sys/wait.h>
44 License:
45 LGPLv2+
47 Maintainer:
48 all