]> sjero.net Git - wget/commitdiff
[svn] Consistently use AC_MSG_NOTICE where appropriate.
authorhniksic <devnull@localhost>
Tue, 4 Nov 2003 14:17:33 +0000 (06:17 -0800)
committerhniksic <devnull@localhost>
Tue, 4 Nov 2003 14:17:33 +0000 (06:17 -0800)
ChangeLog
configure.in

index 4a470d3bf6ffe62afc052a834ba07e3d7a5a8aea..43a2d0a99e9fd2e32ccb09876805ca6d59899e2e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * configure.in: Don't misuse AC_MSG_RESULT.  Use AC_MSG_NOTICE
+       where appropriate.
+
 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
 
        * configure.in: Check whether volatile is supported.  Don't check
index 487ce35fa050ff1a22daddeca2f6900dfbe64e5a..0169fe336512cf66e85ba4785a4ea7505b3b2584 100644 (file)
@@ -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
     ;;
   *)