diff options
| author | Stef Walter <stef@thewalter.net> | 2012-06-29 16:05:03 +0200 | 
|---|---|---|
| committer | Stef Walter <stef@thewalter.net> | 2012-06-29 16:05:52 +0200 | 
| commit | 18803a62d72cb8703fae5061624cc319ee2e78d2 (patch) | |
| tree | a113c557023d5258bf0964a84d289dbb77b8d444 | |
| parent | 8a5fd0f419a30ea9acd448a244fc0ce891575181 (diff) | |
 * Previously was giving errors about present but not usable
| -rw-r--r-- | configure.in | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index b2c284e..eb878e5 100644 --- a/configure.in +++ b/configure.in @@ -48,7 +48,8 @@ fi  AC_CHECK_HEADERS([sys/queue.h sys/limits.h sys/stat.h sys/time.h sys/un.h], ,           [echo "ERROR: required header not found."; exit 1])   AC_CHECK_HEADERS([bsnmp/snmpmod.h], ,  -        [echo "ERROR: required bsnmp header not found." exit 1])  +        [echo "ERROR: required bsnmp header not found."; exit 1], +	[#include <sys/queue.h>])  # Checks for typedefs, structures, and compiler characteristics.  AC_C_CONST  | 
