New module 'fchdir'.
[pspp] / modules / unistd
1 Description:
2 A <unistd.h> for systems lacking it.
3
4 Files:
5 m4/unistd_h.m4
6 lib/unistd_.h
7
8 Depends-on:
9
10 configure.ac:
11 gl_HEADER_UNISTD
12
13 Makefile.am:
14 BUILT_SOURCES += $(UNISTD_H)
15
16 # We need the following in order to create an empty placeholder for
17 # <unistd.h> when the system doesn't have one.
18 unistd.h: unistd_.h
19         rm -f $@-t $@
20         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
21           sed -e 's|@''ABSOLUTE_UNISTD_H''@|$(ABSOLUTE_UNISTD_H)|g' \
22               < $(srcdir)/unistd_.h; \
23         } > $@-t
24         mv $@-t $@
25 MOSTLYCLEANFILES += unistd.h unistd.h-t
26
27 Include:
28 #include <unistd.h>
29
30 License:
31 LGPL
32
33 Maintainer:
34 Simon Josefsson