immutable: Add tests.
[gnulib.git] / m4 / pthread-tss.m4
blob5c5541fa97b6017bf4711043ed55632a79b67f57
1 # pthread-tss.m4 serial 1
2 dnl Copyright (C) 2019-2021 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_PTHREAD_TSS],
9   AC_REQUIRE([gl_PTHREAD_H])
10   AC_REQUIRE([AC_CANONICAL_HOST])
12   if { case "$host_os" in mingw*) true;; *) false;; esac; } \
13      && test $gl_threads_api = windows; then
14     dnl Choose function names that don't conflict with the mingw-w64 winpthreads
15     dnl library.
16     REPLACE_PTHREAD_KEY_CREATE=1
17     REPLACE_PTHREAD_SETSPECIFIC=1
18     REPLACE_PTHREAD_GETSPECIFIC=1
19     REPLACE_PTHREAD_KEY_DELETE=1
20   else
21     if test $HAVE_PTHREAD_H = 0; then
22       HAVE_PTHREAD_KEY_CREATE=0
23       HAVE_PTHREAD_SETSPECIFIC=0
24       HAVE_PTHREAD_GETSPECIFIC=0
25       HAVE_PTHREAD_KEY_DELETE=0
26     fi
27   fi