From e0e2f5c660128830ba39e32884e444690e800dba Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Wed, 20 Sep 2000 02:11:04 +0000 Subject: alter the krb4 check a bit to deal with configure cache suckage. (If you * configure.in: alter the krb4 check a bit to deal with configure cache suckage. (If you do AC_CHECK_LIB with the same library and function name but different LDFLAGS, it will still use the result of the previous check. So use a different function the second time.) svn path=/trunk/; revision=5515 --- ChangeLog | 8 ++++++++ configure.in | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3adcf048cc..0aa19943d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2000-09-19 Dan Winship + + * configure.in: alter the krb4 check a bit to deal with configure + cache suckage. (If you do AC_CHECK_LIB with the same library and + function name but different LDFLAGS, it will still use the result + of the previous check. So use a different function the second + time.) + 2000-09-18 Dan Winship * README: add gal as a dependency diff --git a/configure.in b/configure.in index e3ab5ead60..894fabfd9f 100644 --- a/configure.in +++ b/configure.in @@ -446,7 +446,7 @@ if test x${with_krb4:=no} != xno; then KRB4_CFLAGS="$CFLAGS" KRB4_LDFLAGS="$LDFLAGS -lkrb" ],[ - AC_CHECK_LIB(krb, krb_mk_req, + AC_CHECK_LIB(krb, krb_rd_req, [ AC_DEFINE(HAVE_KRB4) KRB4_CFLAGS="$CFLAGS" -- cgit v1.2.3