1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

separate the check for pthread_rwlock_t, it will soon be an optional

svn path=/trunk/icecast/; revision=4488
This commit is contained in:
Karl Heyes 2003-03-14 00:45:49 +00:00
parent ce039a7e54
commit 5262073213
2 changed files with 3 additions and 1 deletions

View File

@ -465,6 +465,7 @@ if test "x$acx_pthread_ok" = xyes; then
if test "x$flag" != xno; then
PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS"
fi
AC_CHECK_TYPES(pthread_rwlock_t)
LIBS="$save_LIBS"
CFLAGS="$save_CFLAGS"

View File

@ -108,7 +108,7 @@ for flag in $acx_pthread_flags; do
# functions on Solaris that doesn't have a non-functional libc stub.
# We try pthread_create on general principles.
AC_TRY_LINK([#include <pthread.h>],
[pthread_t th; pthread_rwlock_t rw; pthread_join(th, 0);
[pthread_t th; pthread_join(th, 0);
pthread_attr_init(0); pthread_cleanup_push(0, 0);
pthread_create(0,0,0,0); pthread_cleanup_pop(0); ],
[acx_pthread_ok=yes])
@ -164,6 +164,7 @@ if test "x$acx_pthread_ok" = xyes; then
if test "x$flag" != xno; then
PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS"
fi
AC_CHECK_TYPES(pthread_rwlock_t)
LIBS="$save_LIBS"
CFLAGS="$save_CFLAGS"