diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2000-09-19 Dan Winship <danw@helixcode.com> + + * 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 <danw@helixcode.com> * 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" |