* aclocal.m4 (KRB5_AC_ENABLE_DNS): Fix typo that caused the DNS code to never get...
authorKen Raeburn <raeburn@mit.edu>
Wed, 15 Mar 2000 08:48:38 +0000 (08:48 +0000)
committerKen Raeburn <raeburn@mit.edu>
Wed, 15 Mar 2000 08:48:38 +0000 (08:48 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12116 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/aclocal.m4

index a9828340b9e2e079460d0fd7e6120fadeb6d254b..25737d449ca9a374396cd5c1e1737994a9c1d469 100644 (file)
@@ -1,3 +1,8 @@
+2000-03-15  Ken Raeburn  <raeburn@mit.edu>
+
+       * aclocal.m4 (KRB5_AC_ENABLE_DNS): Fix typo that caused the DNS
+       code to never get enabled.
+
 2000-03-01  Tom Yu  <tlyu@mit.edu>
 
        * aclocal.m4: Tweak the HPUX shared lib build some more.  Don't
index 0ad89f1f7038f0c1883f6b18ff0ae10e48d11d22..3228610bf03bde505832560ac04288fd09bd3be7 100644 (file)
@@ -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
 ])