diff --git a/ChangeLog b/ChangeLog index 4a470d3b..43a2d0a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-11-04 Hrvoje Niksic + + * configure.in: Don't misuse AC_MSG_RESULT. Use AC_MSG_NOTICE + where appropriate. + 2003-11-04 Hrvoje Niksic * configure.in: Check whether volatile is supported. Don't check diff --git a/configure.in b/configure.in index 487ce35f..0169fe33 100644 --- a/configure.in +++ b/configure.in @@ -300,7 +300,7 @@ if test x"$with_ssl" != x"no"; then LDFLAGS="-L$ssl_root/lib -R$ssl_root/lib $wget_save_LDFLAGS" fi - AC_MSG_RESULT([Looking for SSL libraries in $ssl_root]) + AC_MSG_NOTICE([looking for SSL libraries in $ssl_root]) dnl Check whether the compiler can find the include files. On dnl some systems Gcc finds libraries in /usr/local/lib, but fails @@ -372,9 +372,7 @@ main(){return 0;} done if test x"$ssl_success" = xyes; then - dnl AC_MSG_RESULT doesn't look right here, but I'm not sure what - dnl to use instead. - AC_MSG_RESULT([Compiling in support for SSL in $ssl_root]) + AC_MSG_NOTICE([compiling in support for SSL in $ssl_root]) AC_DEFINE(HAVE_SSL) AC_SUBST(SSL_INCLUDES) SSL_OBJ='gen_sslfunc$o' @@ -468,7 +466,7 @@ AC_ARG_ENABLE(ipv6, AC_HELP_STRING([--disable-ipv6],[disable IPv6 support]), [case "${enable_ipv6}" in no) - AC_MSG_NOTICE([Disabling IPv6 at user request]) + AC_MSG_NOTICE([disabling IPv6 at user request]) ipv6=no ;; *)