aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/aclocal.m47
2 files changed, 11 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b004ae7..c54d368 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-28 Ken Raeburn <raeburn@mit.edu>
+
+ * aclocal.m4 (AC_KRB5_TCL): If --with-tcl is given, failure to
+ find a library we can use is now an error.
+
2002-10-11 Ken Raeburn <raeburn@mit.edu>
* aclocal.m4: Use dnl after all AC_REQUIRE invocations.
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index 6852aa3..0317f73 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -928,12 +928,17 @@ if test "$with_tcl" != no ; then
if test $tcl_lib = no ; then
if test "$with_tcl" != try ; then
AC_KRB5_TCL_TRYOLD
-dnl AC_MSG_ERROR(Could not find Tcl)
else
AC_MSG_WARN(Could not find Tcl which is needed for some tests)
fi
fi
fi
+# If "yes" or pathname, error out if not found.
+if test "$with_tcl" != no -a "$with_tcl" != try ; then
+ if test "$tcl_header $tcl_lib" != "yes yes" ; then
+ AC_MSG_ERROR(Could not find Tcl)
+ fi
+fi
])dnl
dnl