lock.m4 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # lock.m4 serial 10 (gettext-0.18)
  2. dnl Copyright (C) 2005-2009 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.
  6. dnl From Bruno Haible.
  7. AC_DEFUN([gl_LOCK],
  8. [
  9. AC_REQUIRE([gl_THREADLIB])
  10. if test "$gl_threads_api" = posix; then
  11. # OSF/1 4.0 and MacOS X 10.1 lack the pthread_rwlock_t type and the
  12. # pthread_rwlock_* functions.
  13. AC_CHECK_TYPE([pthread_rwlock_t],
  14. [AC_DEFINE([HAVE_PTHREAD_RWLOCK], [1],
  15. [Define if the POSIX multithreading library has read/write locks.])],
  16. [],
  17. [#include <pthread.h>])
  18. # glibc defines PTHREAD_MUTEX_RECURSIVE as enum, not as a macro.
  19. AC_TRY_COMPILE([#include <pthread.h>],
  20. [#if __FreeBSD__ == 4
  21. error "No, in FreeBSD 4.0 recursive mutexes actually don't work."
  22. #else
  23. int x = (int)PTHREAD_MUTEX_RECURSIVE;
  24. return !x;
  25. #endif],
  26. [AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE], [1],
  27. [Define if the <pthread.h> defines PTHREAD_MUTEX_RECURSIVE.])])
  28. fi
  29. gl_PREREQ_LOCK
  30. ])
  31. # Prerequisites of lib/lock.c.
  32. AC_DEFUN([gl_PREREQ_LOCK], [
  33. AC_REQUIRE([AC_C_INLINE])
  34. ])