diff options
author | Dan Winship <danw@src.gnome.org> | 2000-09-20 10:11:04 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-09-20 10:11:04 +0800 |
commit | e0e2f5c660128830ba39e32884e444690e800dba (patch) | |
tree | b7dedacf2822506dab885c3e87a713e55bda0097 | |
parent | 8617011337e9cf39c7c98676908f44d2b28878a8 (diff) | |
download | gsoc2013-evolution-e0e2f5c660128830ba39e32884e444690e800dba.tar gsoc2013-evolution-e0e2f5c660128830ba39e32884e444690e800dba.tar.gz gsoc2013-evolution-e0e2f5c660128830ba39e32884e444690e800dba.tar.bz2 gsoc2013-evolution-e0e2f5c660128830ba39e32884e444690e800dba.tar.lz gsoc2013-evolution-e0e2f5c660128830ba39e32884e444690e800dba.tar.xz gsoc2013-evolution-e0e2f5c660128830ba39e32884e444690e800dba.tar.zst gsoc2013-evolution-e0e2f5c660128830ba39e32884e444690e800dba.zip |
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
-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" |