From: Ken Raeburn Date: Fri, 24 Sep 2004 01:56:21 +0000 (+0000) Subject: * configure.in: Use AC_MSG_NOTICE for krb4 messages instead of AC_MSG_RESULT, X-Git-Tag: krb5-1.4-beta1~54 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6c6ff636ff0872c452c465d33541b786c8c94197;p=krb5.git * configure.in: Use AC_MSG_NOTICE for krb4 messages instead of AC_MSG_RESULT, because there's no corresponding AC_MSG_CHECKING. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16787 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/ChangeLog b/src/include/ChangeLog index f21974d18..d184d93b3 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,8 @@ +2004-09-23 Ken Raeburn + + * 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 * configure.in: Remove KRB5_AC_NEED_BIND_8_COMPAT. diff --git a/src/include/configure.in b/src/include/configure.in index 5c4181092..f18ddfa9e 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