warnings: fix compilation with old autoconf
[gnulib/ericb.git] / modules / pthread
blob3fb39208ab2f8c85b300b1d5a20782ce7612f44c
1 Description:
2 Implement a trivial subset of the pthreads library.
4 Files:
5 lib/pthread.c
6 lib/pthread.in.h
7 m4/pthread.m4
9 Depends-on:
10 extensions
11 extern-inline
12 sched
13 time
15 configure.ac-early:
16 AC_DEFINE([_REENTRANT], 1, [For thread-safety on OSF/1, Solaris.])
17 AC_DEFINE([_THREAD_SAFE], 1, [For thread-safety on AIX, FreeBSD.])
19 configure.ac:
20 gl_PTHREAD_CHECK
21 gl_MODULE_INDICATOR([pthread])
23 Makefile.am:
24 BUILT_SOURCES += $(PTHREAD_H)
26 # We need the following in order to create <pthread.h> when the system
27 # doesn't have one that works with the given compiler.
28 if GL_GENERATE_PTHREAD_H
29 pthread.h: pthread.in.h $(top_builddir)/config.status
30         $(AM_V_GEN)rm -f $@-t $@ && \
31         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
32           sed -e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
33               -e 's|@''HAVE_PTHREAD_H''@|$(HAVE_PTHREAD_H)|g' \
34               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
35               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
36               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
37               -e 's|@''NEXT_PTHREAD_H''@|$(NEXT_PTHREAD_H)|g' \
38               -e 's|@''HAVE_PTHREAD_T''@|$(HAVE_PTHREAD_T)|g' \
39               -e 's|@''HAVE_PTHREAD_SPINLOCK_T''@|$(HAVE_PTHREAD_SPINLOCK_T)|g' \
40               < $(srcdir)/pthread.in.h; \
41         } > $@-t && \
42         mv $@-t $@
43 else
44 pthread.h: $(top_builddir)/config.status
45         rm -f $@
46 endif
47 MOSTLYCLEANFILES += pthread.h pthread.h-t
49 Include:
50 <pthread.h>
52 Link:
53 $(LIB_PTHREAD)
55 License:
56 LGPLv2+
58 Maintainer:
59 Glen Lenker and Paul Eggert