projects
/
krb5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
894cfec
)
* aclocal.m4 (KRB5_AC_ENABLE_DNS): Fix typo that caused the DNS code to never get...
author
Ken Raeburn
<raeburn@mit.edu>
Wed, 15 Mar 2000 08:48:38 +0000
(08:48 +0000)
committer
Ken 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
patch
|
blob
|
history
src/aclocal.m4
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index a9828340b9e2e079460d0fd7e6120fadeb6d254b..25737d449ca9a374396cd5c1e1737994a9c1d469 100644
(file)
--- 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 0ad89f1f7038f0c1883f6b18ff0ae10e48d11d22..3228610bf03bde505832560ac04288fd09bd3be7 100644
(file)
--- 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
])