aboutsummaryrefslogtreecommitdiff
path: root/src/aclocal.m4
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2004-07-11 20:17:45 +0000
committerKen Raeburn <raeburn@mit.edu>2004-07-11 20:17:45 +0000
commit2cc791edb53dd12e95ad56fd522c17ef7eb16ede (patch)
treed3c8a74fc9c065ed916bab366710c2079f251a6d /src/aclocal.m4
parent05167d2cc1f4f576597c0927a388afb375c784f0 (diff)
downloadkrb5-2cc791edb53dd12e95ad56fd522c17ef7eb16ede.zip
krb5-2cc791edb53dd12e95ad56fd522c17ef7eb16ede.tar.gz
krb5-2cc791edb53dd12e95ad56fd522c17ef7eb16ede.tar.bz2
* aclocal.m4 (KRB5_AC_ENABLE_THREADS): Fix typo that caused some code to be
omitted. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16584 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/aclocal.m4')
-rw-r--r--src/aclocal.m425
1 files changed, 12 insertions, 13 deletions
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index 8fce1c9..a0691cf 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -142,17 +142,17 @@ if test "$enable_thread_support" = yes ; then
fi
dnl Maybe this should be inside the conditional above? Doesn't cache....
if test "$enable_thread_support" = yes; then
-ACX_PTHREAD(,[AC_MSG_ERROR([cannot determine options for enabling thread support])])
-AC_MSG_NOTICE(PTHREAD_CC = $PTHREAD_CC)
-AC_MSG_NOTICE(PTHREAD_CFLAGS = $PTHREAD_CFLAGS)
-AC_MSG_NOTICE(PTHREAD_LIBS = $PTHREAD_LIBS)
-dnl Not really needed -- if pthread.h isn't found, ACX_PTHREAD will fail.
-dnl AC_CHECK_HEADERS(pthread.h)
-# AIX and Tru64 don't support weak references, and don't have
-# stub versions of the pthread code in libc.
-case "${host_os}" in
- aix* | osf*) LIBS="$LIBS $PTHREAD_LIBS" ;;
-esac
+ ACX_PTHREAD(,[AC_MSG_ERROR([cannot determine options for enabling thread support])])
+ AC_MSG_NOTICE(PTHREAD_CC = $PTHREAD_CC)
+ AC_MSG_NOTICE(PTHREAD_CFLAGS = $PTHREAD_CFLAGS)
+ AC_MSG_NOTICE(PTHREAD_LIBS = $PTHREAD_LIBS)
+ dnl Not really needed -- if pthread.h isn't found, ACX_PTHREAD will fail.
+ dnl AC_CHECK_HEADERS(pthread.h)
+ # AIX and Tru64 don't support weak references, and don't have
+ # stub versions of the pthread code in libc.
+ case "${host_os}" in
+ aix* | osf*) LIBS="$LIBS $PTHREAD_LIBS" ;;
+ esac
fi
dnl We want to know where these routines live, so on systems with weak
dnl reference support we can figure out whether or not the pthread library
@@ -170,11 +170,10 @@ LIBS="$PTHREAD_LIBS $LIBS"
AC_MSG_NOTICE(rechecking with PTHREAD_... options)
AC_CHECK_LIB(c, pthread_mutexattr_setrobust_np,
[AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_SETROBUST_NP_IN_THREAD_LIB,1,[Define if pthread_mutexattr_setrobust_np is provided in the thread library.])])
-])
LIBS="$old_LIBS"
CC="$old_CC"
CFLAGS="$old_CFLAGS"
-fi
+])
dnl This is somewhat gross and should go away when the build system
dnl is revamped. -- tlyu