1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

s3: get pthread detection also on HP-UX right

This commit is contained in:
Björn Jacke 2010-01-27 18:54:55 +01:00
parent dffb5ad2bf
commit 6bade10a1e

View File

@ -6361,17 +6361,28 @@ if test "x$PTHREAD_LDFLAGS" = xerror; then
PTHREAD_LDFLAGS="-lpthread" ])
fi
# especially for HP-UX, where the AC_CHECK_FUNC macro fails to test for
# pthread_attr_init. On pthread_mutex_lock it works there...
if test "x$PTHREAD_LDFLAGS" = xerror; then
AC_CHECK_LIB(pthread, pthread_mutex_lock, [
PTHREAD_CFLAGS=="-D_REENTRANT"
PTHREAD_LDFLAGS="-lpthread" ])
fi
AC_SUBST(PTHREAD_CFLAGS)
AC_SUBST(PTHREAD_LDFLAGS)
samba_cv_HAVE_PTHREAD=no
if test x"$PTHREAD_CFLAGS" != xerror -a x"$PTHREAD_LDFLAGS" != xerror; then
samba_cv_HAVE_PTHREAD=yes
# now check for pthread.h with pthread-correct CFLAGS:
# now check for pthread.h with pthread-correct CFLAGS and LDFLAGS:
ac_save_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
ac_save_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS $PTHREAD_LDFLAGS"
AC_CHECK_HEADERS(pthread.h)
CFLAGS=$ac_save_CFLAGS
LDFLAGS=$ac_save_LDFLAGS
fi
#################################################