Made autoconf print an error message indicating ipf is not supported if it is specified. Changelog updates.

git-svn-id: file:///home/mbr/svn/fwknop/trunk@287 510a4753-2344-4c79-9c09-4d669213fbeb
This commit is contained in:
Damien Stuart
2010-08-29 01:50:58 +00:00
parent 6bcebe565c
commit 1381f18374
2 changed files with 9 additions and 1 deletions
+8 -1
View File
@@ -1,5 +1,12 @@
2010-08-28 Damien Stuart <dstuart@dstuart.org>
* Version 2.0.0rc2
* Added support for access requests using ipfw.
* Added platform-related ifdefs around platform-specific code.
* Stubbed in ipf and pf firewall program support (not operational
yet).
* Updates to accomodate compiling on FreeBSD-basded systems.
2010-07-21 Damien Stuart <dstuart@dstuart.org>
* Bumped version in configure.ac to 2.0.0rc2
* Added extras directory to source distribution as a holder for extra
and/or contributed files. This initially includes startup (init)
scripts for various platforms.
+1
View File
@@ -267,6 +267,7 @@ dnl
FIREWALL_EXE=$IPFW_EXE
AC_DEFINE_UNQUOTED([FIREWALL_IPFW], [1], [The firewall type: ipfw.])
],[ AS_IF([test "x$IPF_EXE" != x], [
AC_MSG_ERROR([Sorry - ipf was specified or the only one found, however, it is not supported yet.])
FIREWALL_TYPE="ipf"
FIREWALL_EXE=$IPF_EXE
AC_DEFINE_UNQUOTED([FIREWALL_IPF], [1], [The firewall type: ipf.])