summaryrefslogtreecommitdiffstats
path: root/src/aclocal.m4
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>1997-08-12 15:11:22 +0000
committerEzra Peisach <epeisach@mit.edu>1997-08-12 15:11:22 +0000
commitf2952ba70fbf6694213996e318b633570d8dae24 (patch)
tree119682417075d6b248f995b590a063699e295407 /src/aclocal.m4
parent059ca3667a354bdf6a7de19faecec44e4018e004 (diff)
downloadkrb5-f2952ba70fbf6694213996e318b633570d8dae24.tar.gz
krb5-f2952ba70fbf6694213996e318b633570d8dae24.tar.xz
krb5-f2952ba70fbf6694213996e318b633570d8dae24.zip
* aclocal.m4 (WITH_HESIOD): Fix --with-hesiod support to DTRT if
the option is not specified. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10173 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/aclocal.m4')
-rw-r--r--src/aclocal.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index c0418274d6..6783d876a5 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -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