version-etc: bump copyright year reported in --version
[gnulib.git] / modules / pthread
1 Description:
2 Implement a trivial subset of the pthreads library.
3
4 Files:
5 lib/pthread.c
6 lib/pthread.in.h
7 m4/pthread.m4
8
9 Depends-on:
10 extern-inline
11 sched
12 time
13
14 configure.ac:
15 gl_PTHREAD_CHECK
16
17 Makefile.am:
18 BUILT_SOURCES += $(PTHREAD_H)
19
20 # We need the following in order to create <pthread.h> when the system
21 # doesn't have one that works with the given compiler.
22 if GL_GENERATE_PTHREAD_H
23 pthread.h: pthread.in.h $(top_builddir)/config.status
24         $(AM_V_GEN)rm -f $@-t $@ && \
25         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
26           sed -e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
27               -e 's|@''HAVE_PTHREAD_H''@|$(HAVE_PTHREAD_H)|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_PTHREAD_H''@|$(NEXT_PTHREAD_H)|g' \
32               -e 's|@''HAVE_PTHREAD_T''@|$(HAVE_PTHREAD_T)|g' \
33               -e 's|@''HAVE_PTHREAD_SPINLOCK_T''@|$(HAVE_PTHREAD_SPINLOCK_T)|g' \
34               < $(srcdir)/pthread.in.h; \
35         } > $@-t && \
36         mv $@-t $@
37 else
38 pthread.h: $(top_builddir)/config.status
39         rm -f $@
40 endif
41 MOSTLYCLEANFILES += pthread.h pthread.h-t
42
43 Include:
44 <pthread.h>
45
46 Link:
47 $(LIB_PTHREAD)
48
49 License:
50 LGPLv2+
51
52 Maintainer:
53 Glen Lenker and Paul Eggert