summaryrefslogtreecommitdiff
path: root/m4/pthread_sigmask.m4
blob: d25e2cc3e70d5a0d969e438ee4ac518b318667e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# pthread_sigmask.m4 serial 2
dnl Copyright (C) 2011 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.

AC_DEFUN([gl_PTHREAD_SIGMASK],
[
  m4_ifdef([gl_THREADLIB], [
    AC_REQUIRE([gl_THREADLIB])
    if test "$gl_threads_api" = posix; then
      gl_save_LIBS="$LIBS"
      LIBS="$LIBS $LIBMULTITHREAD"
      AC_CHECK_FUNCS([pthread_sigmask])
      LIBS="$gl_save_LIBS"
    else
      ac_cv_func_pthread_sigmask=no
    fi
  ], [
    AC_CHECK_FUNCS_ONCE([pthread_sigmask])
  ])

  if test $ac_cv_func_pthread_sigmask = no; then
    REPLACE_PTHREAD_SIGMASK=1
  fi
])