diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/aclocal.m4 | 2 |
2 files changed, 6 insertions, 1 deletions
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 <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 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 ]) |
