* aclocal.m4 (WITH_HESIOD): Fix --with-hesiod support to DTRT if
authorEzra Peisach <epeisach@mit.edu>
Tue, 12 Aug 1997 15:11:22 +0000 (15:11 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 12 Aug 1997 15:11:22 +0000 (15:11 +0000)
        the option is not specified.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10173 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/aclocal.m4

index 09b4e0ad1e7c39700c803dce11ed86fa9583cd12..03828db01d1237cd7a45fd11c9456bc5421aacdb 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug 12 11:09:30 1997  Ezra Peisach  <epeisach@mit.edu>
+
+       * aclocal.m4 (WITH_HESIOD): Fix --with-hesiod support to DTRT if
+               the option is not specified.
+
 Tue Aug 12 08:58:11 1997  Ezra Peisach  <epeisach@mit.edu>
 
        * Makefile.in (MACFILES): Remove mac/gss/* as it does not exist.
index c0418274d6c2f33450f3155226e7544482bf7b55..6783d876a5312aab96acdfb64bde07f41254bcad 100644 (file)
@@ -940,9 +940,9 @@ dnl
 dnl WITH_HESIOD
 dnl
 AC_DEFUN(WITH_HESIOD,
-[AC_ARG_WITH(hesiod, [  --with-hesiod=path      compile with hesiod support],
+[AC_ARG_WITH(hesiod, [  --with-hesiod[=path]    compile with hesiod support],
        hesiod=$with_hesiod, with_hesiod=no)
-if test "$hesiod" != "no"; then
+if test "$with_hesiod" != "no"; then
        HESIOD_DEFS=-DHESIOD
        AC_CHECK_LIB(resolv, res_send, res_lib=-lresolv)
        if test "$hesiod" != "yes"; then