aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-03-23 01:01:26 +0000
committerGuy Harris <guy@alum.mit.edu>2002-03-23 01:01:26 +0000
commit4e576dc1f2a45b1d7c6cfe2cc4c64f5d2303a298 (patch)
tree38bd5e379dca979ea031964c150c5596d6f0ae53 /configure.in
parent2ee730c79e615c2104516fd278b892f700c7c6dd (diff)
Default to *not* using the UCD SNMP library, as the current versions
have buffer-overflow vulnerabilities that we can't avoid. You have to ask for it explicitly if you want it. svn path=/trunk/; revision=5007
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in12
1 files changed, 10 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 796829ec28..ec9729d18f 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.159 2002/03/12 10:37:01 guy Exp $
+# $Id: configure.in,v 1.160 2002/03/23 01:01:26 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
@@ -515,7 +515,15 @@ AC_ARG_WITH(ucdsnmp,
ucdsnmp_dir=$withval
fi
],[
- want_ucdsnmp=ifpresent
+ #
+ # For now, we default to *not* using the UCD SNMP library unless
+ # the user explicitly asks for it, as the current release has
+ # buffer-overflow vulnerabilities we can't avoid.
+ #
+ # Set "want_ucdsnmp" to "ifpresent" to make the default "use it
+ # if you find it, otherwise don't".
+ #
+ want_ucdsnmp=no
ucdsnmp_dir=
])