verify: new macro 'assume'
[gnulib.git] / modules / sys_resource
1 Description:
2 A POSIX-like <sys/resource.h>.
3
4 Files:
5 lib/sys_resource.in.h
6 m4/sys_resource_h.m4
7
8 Depends-on:
9 include_next
10 snippet/arg-nonnull
11 snippet/c++defs
12 snippet/warn-on-use
13 sys_time
14
15 configure.ac:
16 gl_HEADER_SYS_RESOURCE
17 AC_PROG_MKDIR_P
18
19 Makefile.am:
20 BUILT_SOURCES += sys/resource.h
21
22 # We need the following in order to create <sys/resource.h> when the system
23 # doesn't have one.
24 sys/resource.h: sys_resource.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
25         $(AM_V_at)$(MKDIR_P) sys
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_SYS_RESOURCE_H''@|$(NEXT_SYS_RESOURCE_H)|g' \
33               -e 's|@''HAVE_SYS_RESOURCE_H''@|$(HAVE_SYS_RESOURCE_H)|g' \
34               -e 's/@''GNULIB_GETRUSAGE''@/$(GNULIB_GETRUSAGE)/g' \
35               -e 's/@''HAVE_GETRUSAGE''@/$(HAVE_GETRUSAGE)/g' \
36               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
37               -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
38               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
39               < $(srcdir)/sys_resource.in.h; \
40         } > $@-t && \
41         mv -f $@-t $@
42 MOSTLYCLEANFILES += sys/resource.h sys/resource.h-t
43 MOSTLYCLEANDIRS += sys
44
45 Include:
46 <sys/resource.h>
47
48 License:
49 LGPL
50
51 Maintainer:
52 Bruno Haible