mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-06-15 15:25:49 +00:00
d941c98dbf
Linking with -lpthread is not needed on musl libc, macOS, NetBSD, Solaris, Cygwin, Haiku, Android. Reported by Michael Osipov <michael.osipov@innomotics.com> and Tijl Coosemans <tijl@FreeBSD.org> in <https://lists.gnu.org/archive/html/bug-gettext/2025-09/msg00019.html>. * m4/pthread-once.m4 (gl_PTHREAD_ONCE): Require gl_PTHREADLIB. Set PTHREAD_ONCE_LIB. * modules/pthread-once (Link): Link with $(PTHREAD_ONCE_LIB) instead of $(LIBPMULTITHREAD). * modules/pthread-once-tests (Makefile.am): Update accordingly.
34 lines
516 B
Plaintext
34 lines
516 B
Plaintext
Description:
|
|
POSIX once-only control.
|
|
|
|
Files:
|
|
lib/pthread-once.c
|
|
m4/pthread-once.m4
|
|
|
|
Depends-on:
|
|
pthread-h
|
|
windows-once [test $gl_threads_api = windows]
|
|
|
|
configure.ac:
|
|
gl_PTHREAD_ONCE
|
|
gl_CONDITIONAL([GL_COND_OBJ_PTHREAD_ONCE],
|
|
[test $HAVE_PTHREAD_ONCE = 0 || test $REPLACE_PTHREAD_ONCE = 1])
|
|
gl_PTHREAD_MODULE_INDICATOR([pthread-once])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_PTHREAD_ONCE
|
|
lib_SOURCES += pthread-once.c
|
|
endif
|
|
|
|
Include:
|
|
<pthread.h>
|
|
|
|
Link:
|
|
$(PTHREAD_ONCE_LIB)
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
all
|