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 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.in') 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