From 1381f183747caff1adca701c30f3b2996fcccda9 Mon Sep 17 00:00:00 2001 From: Damien Stuart Date: Sun, 29 Aug 2010 01:50:58 +0000 Subject: [PATCH] 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 --- ChangeLog | 9 ++++++++- configure.ac | 1 + 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a2f378ab..7ebc4b15 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ +2010-08-28 Damien Stuart + * 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 - * 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. diff --git a/configure.ac b/configure.ac index a267923b..fc67b1d9 100644 --- a/configure.ac +++ b/configure.ac @@ -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.])