aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-02-28 06:44:57 +0000
committerGuy Harris <guy@alum.mit.edu>2003-02-28 06:44:57 +0000
commit8959d1b66d038b2d698036280ee0e415f440efa7 (patch)
tree0bbe45bb287de1aa67e1fc14c329ab8926a4ae52
parent02743108b721b48742620c9153767e0d748ac33f (diff)
Put out the "Checking whether to use UCD SNMP/NET-SNMP library if
available" message *after* checking for net-snmp-config - nesting something such as AC_PATH_PROG that produces a "Checking..." message inside another check causes the pairing of check and result messages to be broken. svn path=/trunk/; revision=7221
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 5d7f41d36c..033f6a2eea 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.196 2003/02/26 20:08:30 guy Exp $
+# $Id: configure.in,v 1.197 2003/02/28 06:44:57 guy Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
@@ -546,7 +546,6 @@ AC_SUBST(SSL_LIBS)
dnl UCD SNMP Check
SNMP_LIBS=''
-AC_MSG_CHECKING(whether to use UCD SNMP/NET-SNMP library if available)
AC_ARG_WITH(net-snmp,
[ --with-net-snmp=PATH use PATH as the location of the net-snmp-config shell script that comes with the net-snmp package.],
@@ -589,6 +588,7 @@ if test "x$netsnmpconfig" != "xno" ; then
fi
fi
+AC_MSG_CHECKING(whether to use UCD SNMP/NET-SNMP library if available)
if test "x$NETSNMPCONFIG" != "xno" -a "x$NETSNMPCONFIG" != "x" -a -x "$NETSNMPCONFIG" ; then
dnl other choices for flags to use here: could also use
dnl --prefix or --exec-prefix if you don't want the full list.