libposix: Add _HEADERS primaries to posix modules.
[pspp] / modules / pthread
1 Description:
2 Implement a trivial subset of the pthreads library.
3
4 Files:
5 lib/pthread.in.h
6 m4/pthread.m4
7
8 Depends-on:
9 sched
10 time
11
12 configure.ac:
13 gl_PTHREAD_CHECK
14
15 Makefile.am:
16 nodist_pkginclude_HEADERS += $(PTHREAD_H)
17 EXTRA_HEADERS += pthread.h
18
19 BUILT_SOURCES += $(PTHREAD_H)
20
21 # We need the following in order to create <pthread.h> when the system
22 # doesn't have one that works with the given compiler.
23 pthread.h: pthread.in.h
24         $(AM_V_GEN)rm -f $@-t $@ && \
25         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
26           sed -e 's|@''HAVE_PTHREAD_H''@|$(HAVE_PTHREAD_H)|g' \
27               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
28               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
29               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
30               -e 's|@''NEXT_PTHREAD_H''@|$(NEXT_PTHREAD_H)|g' \
31               -e 's|@''HAVE_PTHREAD_T''@|$(HAVE_PTHREAD_T)|g' \
32               -e 's|@''HAVE_PTHREAD_SPINLOCK_T''@|$(HAVE_PTHREAD_SPINLOCK_T)|g' \
33               < $(srcdir)/pthread.in.h; \
34         } > $@-t && \
35         mv $@-t $@
36 MOSTLYCLEANFILES += pthread.h pthread.h-t
37
38 Include:
39 <pthread.h>
40
41 Link:
42 $(LIB_PTHREAD)
43
44 License:
45 LGPLv2+
46
47 Maintainer:
48 Glen Lenker and Paul Eggert