summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ChangeLog5
-rw-r--r--src/include/configure.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog
index f21974d184..d184d93b3d 100644
--- a/src/include/ChangeLog
+++ b/src/include/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-23 Ken Raeburn <raeburn@mit.edu>
+
+ * configure.in: Use AC_MSG_NOTICE for krb4 messages instead of
+ AC_MSG_RESULT, because there's no corresponding AC_MSG_CHECKING.
+
2004-09-21 Tom Yu <tlyu@mit.edu>
* configure.in: Remove KRB5_AC_NEED_BIND_8_COMPAT.
diff --git a/src/include/configure.in b/src/include/configure.in
index 5c41810929..f18ddfa9e4 100644
--- a/src/include/configure.in
+++ b/src/include/configure.in
@@ -260,10 +260,10 @@ AC_ARG_ENABLE([athena],
AC_DEFINE(KRB5_ATHENA_COMPAT,1,[Define if MIT Project Athena default configuration should be used]),)
if test "$KRB4_LIB" = ''; then
- AC_MSG_RESULT(No Kerberos 4 compatibility)
+ AC_MSG_NOTICE(No Kerberos 4 compatibility)
maybe_kerberosIV=
else
- AC_MSG_RESULT(Kerberos 4 compatibility enabled)
+ AC_MSG_NOTICE(Kerberos 4 compatibility enabled)
maybe_kerberosIV=kerberosIV
AC_DEFINE(KRB5_KRB4_COMPAT,1,[Define if Kerberos V4 backwards compatibility should be supported])
fi