diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index ba1602c..27b24a1 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(bsnmp-jails, 0.1, stef@memberwebs.com) -AM_INIT_AUTOMAKE(bsnmp-jails, 0.1) +AC_INIT(bsnmp-jails, 0.2, stef@memberwebs.com) +AM_INIT_AUTOMAKE(bsnmp-jails, 0.2) AC_CONFIG_SRCDIR([module/bsnmp-jails.c]) AM_CONFIG_HEADER([config.h]) @@ -55,6 +55,8 @@ AC_CHECK_HEADERS([pcap.h], , # Check for libraries AC_SEARCH_LIBS(pcap_open_live, pcap, , [ echo "Must have a pcap library available"; exit 2 ] ) +AC_CHECK_LIB([kvm], [kvm_open], , + [ echo "ERROR: Must have FreeBSD 5.1 or higher"; exit 1]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST |