Codebase list cyrus-sasl2 / debian/2.1.24_rc1.dfsg1+cvs2011-05-23-1
One more AC_CACHE_VAL without _cv_ fix Ondřej Surý 12 years ago
1 changed file(s) with 25 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
8686 sbin_PROGRAMS = saslauthd testsaslauthd
8787 EXTRA_PROGRAMS = saslcache
8888
89 --- a/config/kerberos_v4.m4
90 +++ b/config/kerberos_v4.m4
91 @@ -89,18 +89,18 @@ AC_DEFUN([SASL_KERBEROS_V4_CHK], [
92 dnl if we were ambitious, we would look more aggressively for the
93 dnl krb4 install
94 if test -d ${krb4}; then
95 - AC_CACHE_CHECK(for Kerberos includes, cyrus_krbinclude, [
96 + AC_CACHE_CHECK(for Kerberos includes, cyrus_cv_krbinclude, [
97 for krbhloc in include/kerberosIV include/kerberos include
98 do
99 if test -f ${krb4}/${krbhloc}/krb.h ; then
100 - cyrus_krbinclude=${krb4}/${krbhloc}
101 + cyrus_cv_krbinclude=${krb4}/${krbhloc}
102 break
103 fi
104 done
105 ])
106
107 - if test -n "${cyrus_krbinclude}"; then
108 - CPPFLAGS="$CPPFLAGS -I${cyrus_krbinclude}"
109 + if test -n "${cyrus_cv_krbinclude}"; then
110 + CPPFLAGS="$CPPFLAGS -I${cyrus_cv_krbinclude}"
111 fi
112 LDFLAGS="$LDFLAGS -L$krb4/lib"
113 fi