summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2004-04-07 04:16:11 +0000
committerBen Lindstrom <mouring@eviladmin.org>2004-04-07 04:16:11 +0000
commita8104b5c92a44774208e6d8b979d583975ba67d4 (patch)
treeeb3c165215a4cb58982d25a46cd2f817d0c918ad /configure.ac
parentac7c998a2d7f89d36c5896c0845b54c595af4cb8 (diff)
- (bal) [acconfig.h auth-krb5.c configure.ac gss-serv-krb5.c] Check to see
if Krb5 library exports krb5_init_etc() since some OSes (like MacOS/X) are starting to restrict it as internal since it is not needed by developers any more. (Patch based on Apple tree) - (bal) [monitor.c monitor_wrap.c] monitor_wrap.c] moved zlib.h higher since krb5 on MacOS/X conflicts. There may be a better solution, but this will work for now.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a06452bd9..fa5021cfa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.210 2004/04/06 11:41:51 dtucker Exp $ 1# $Id: configure.ac,v 1.211 2004/04/07 04:16:11 mouring Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -2240,6 +2240,7 @@ AC_ARG_WITH(kerberos5,
2240 2240
2241 LIBS="$LIBS $K5LIBS" 2241 LIBS="$LIBS $K5LIBS"
2242 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS)) 2242 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS))
2243 AC_SEARCH_LIBS(krb5_init_ets, $K5LIBS, AC_DEFINE(KRB5_INIT_ETS))
2243 ] 2244 ]
2244) 2245)
2245 2246