diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-03-01 04:56:48 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-03-01 04:56:48 +0000 |
commit | 2c54a22fccb4aeeda52e0407058cf01f620297a1 (patch) | |
tree | 4a019dabebbef2a0445d2b7d48a7dfa284cff96c /configure.in | |
parent | 6470c4a96253842d0d56eb7511eccbc5ab7a3ab6 (diff) | |
download | wireshark-2c54a22fccb4aeeda52e0407058cf01f620297a1.tar.gz wireshark-2c54a22fccb4aeeda52e0407058cf01f620297a1.tar.bz2 wireshark-2c54a22fccb4aeeda52e0407058cf01f620297a1.zip |
We have some SNMP if we have NET-SNMP *or* UCD SNMP, not just if we have
NET-SNMP *and* UCD SNMP.
svn path=/trunk/; revision=7229
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 033f6a2eea..1358d39670 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.197 2003/02/28 06:44:57 guy Exp $ +# $Id: configure.in,v 1.198 2003/03/01 04:56:48 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 @@ -619,7 +619,7 @@ else fi fi -if test "x$have_net_snmp" = "xyes" && test "x$have_ucd_snmp" = "xyes"; then +if test "x$have_net_snmp" = "xyes" || test "x$have_ucd_snmp" = "xyes"; then AC_DEFINE(HAVE_SOME_SNMP, 1, [Define to if some SNMP support is to be used]) fi |