From ee3228af38ec98c60a3b6f72a9b1c75b5ef53641 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Mon, 23 Jun 2008 11:37:08 +0200 Subject: build: change equailty test for old bash Michael used GNU bash, version 1.14.7(1), which apparently does not seem to know about the double ("==") variant of equality tests. Reported-by: Michael Teicher Signed-off-by: Jan Engelhardt Signed-off-by: Patrick McHardy --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index ce26e28c..2d2f90fd 100644 --- a/configure.ac +++ b/configure.ac @@ -47,10 +47,10 @@ if test "$ac_cv_header_linux_dccp_h" != "yes"; then fi; AC_SUBST([blacklist_modules]) -AM_CONDITIONAL([ENABLE_STATIC], [test "$enable_static" == "yes"]) -AM_CONDITIONAL([ENABLE_SHARED], [test "$enable_shared" == "yes"]) -AM_CONDITIONAL([ENABLE_DEVEL], [test "$enable_devel" == "yes"]) -AM_CONDITIONAL([ENABLE_LIBIPQ], [test "$enable_libipq" == "yes"]) +AM_CONDITIONAL([ENABLE_STATIC], [test "$enable_static" = "yes"]) +AM_CONDITIONAL([ENABLE_SHARED], [test "$enable_shared" = "yes"]) +AM_CONDITIONAL([ENABLE_DEVEL], [test "$enable_devel" = "yes"]) +AM_CONDITIONAL([ENABLE_LIBIPQ], [test "$enable_libipq" = "yes"]) regular_CFLAGS="-D_LARGEFILE_SOURCE=1 -D_LARGE_FILES -D_FILE_OFFSET_BITS=64 \ -D_REENTRANT -Wall -Waggregate-return -Wmissing-declarations \ -- cgit v1.2.3 From b7580450b4c669846fe840997984dfaaa9c39a71 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 25 Jun 2008 12:18:23 +0200 Subject: build: ip6.h is not required Remove the check from configure.ac that errors out when ip6.h is not found. The code does not actually depend on any structures from it. Reported-by: anonymous Signed-off-by: Jan Engelhardt Signed-off-by: Patrick McHardy --- configure.ac | 1 - 1 file changed, 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 2d2f90fd..09e5d0d4 100644 --- a/configure.ac +++ b/configure.ac @@ -38,7 +38,6 @@ AC_ARG_ENABLE([devel], AC_ARG_ENABLE([libipq], AS_HELP_STRING([--enable-libipq], [Build and install libipq])) -AC_CHECK_HEADER([netinet/ip6.h], [], [AC_MSG_ERROR(but we need that for IPv6)]) AC_CHECK_HEADER([linux/dccp.h]) blacklist_modules=""; -- cgit v1.2.3 From 675e30f258952292972a562b71161b6d3cd77313 Mon Sep 17 00:00:00 2001 From: Patrick McHardy Date: Wed, 23 Jul 2008 15:03:28 +0200 Subject: v1.4.2-rc1 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 09e5d0d4..2ffe6c02 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ define([_XTABLES_VERSION_MAJOR], 1) define([_XTABLES_VERSION_MINOR], 4) -define([_XTABLES_VERSION_PATCH], 1) -define([_XTABLES_VERSION_EXTRA], .1) +define([_XTABLES_VERSION_PATCH], 2) +define([_XTABLES_VERSION_EXTRA], -rc1) define([_XTABLES_VERSION],_XTABLES_VERSION_MAJOR._XTABLES_VERSION_MINOR._XTABLES_VERSION_PATCH[]_XTABLES_VERSION_EXTRA) -- cgit v1.2.3