From 71f53f67f8df024160b336c093e5e6cb8b2e3895 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Wed, 15 Mar 2000 08:48:38 +0000 Subject: [PATCH] * aclocal.m4 (KRB5_AC_ENABLE_DNS): Fix typo that caused the DNS code to never get enabled git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12116 dc483132-0cff-0310-8789-dd5450dbe970 --- src/ChangeLog | 5 +++++ src/aclocal.m4 | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index a9828340b..25737d449 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2000-03-15 Ken Raeburn + + * aclocal.m4 (KRB5_AC_ENABLE_DNS): Fix typo that caused the DNS + code to never get enabled. + 2000-03-01 Tom Yu * aclocal.m4: Tweak the HPUX shared lib build some more. Don't diff --git a/src/aclocal.m4 b/src/aclocal.m4 index 0ad89f1f7..3228610bf 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -1419,7 +1419,7 @@ AC_DEFUN(KRB5_AC_ENABLE_DNS, [ AC_ARG_ENABLE([dns], [ --enable-dns enable DNS lookups of Kerberos realm and servers], , [enable_dns=no]) - if test "$enable_val" = yes; then + if test "$enable_dns" = yes; then AC_DEFINE(KRB5_DNS_LOOKUP) fi ]) -- 2.26.2