]> git.ipfire.org Git - thirdparty/iptables.git/blobdiff - configure.ac
man: Do not escape exclamation marks
[thirdparty/iptables.git] / configure.ac
index b170addfd4681e2cfbad8eee8fc4d2f438326502..d99fa3b95bd75498b3636bf87bab2e3f5f848c87 100644 (file)
@@ -1,9 +1,9 @@
 
-AC_INIT([iptables], [1.6.0])
+AC_INIT([iptables], [1.8.10])
 
 # See libtool.info "Libtool's versioning system"
-libxtables_vcurrent=11
-libxtables_vage=0
+libxtables_vcurrent=19
+libxtables_vage=7
 
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_HEADERS([config.h])
@@ -12,9 +12,8 @@ AC_PROG_INSTALL
 AM_INIT_AUTOMAKE([-Wall])
 AC_PROG_CC
 AM_PROG_CC_C_O
-AC_DISABLE_STATIC
 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
-AM_PROG_LIBTOOL
+LT_INIT([disable-static])
 
 AC_ARG_WITH([kernel],
        AS_HELP_STRING([--with-kernel=PATH],
@@ -42,8 +41,9 @@ AC_ARG_ENABLE([ipv6],
 AC_ARG_ENABLE([largefile],
        AS_HELP_STRING([--disable-largefile], [Do not build largefile support]),
        [enable_largefile="$enableval"],
-       [enable_largefile="yes";
-       largefile_cppflags='-D_LARGEFILE_SOURCE=1 -D_LARGE_FILES -D_FILE_OFFSET_BITS=64'])
+       [enable_largefile="yes"])
+AS_IF([test "$enable_largefile" = "yes"], [largefile_cppflags='-D_LARGEFILE_SOURCE=1 -D_LARGE_FILES -D_FILE_OFFSET_BITS=64'])
+
 AC_ARG_ENABLE([devel],
        AS_HELP_STRING([--enable-devel],
        [Install Xtables development headers]),
@@ -67,11 +67,13 @@ AC_ARG_ENABLE([connlabel],
        AS_HELP_STRING([--disable-connlabel],
        [Do not build libnetfilter_conntrack]),
        [enable_connlabel="$enableval"], [enable_connlabel="yes"])
-
-libiptc_LDFLAGS2="";
-AX_CHECK_LINKER_FLAGS([-Wl,--no-as-needed],
-       [libiptc_LDFLAGS2="-Wl,--no-as-needed"])
-AC_SUBST([libiptc_LDFLAGS2])
+AC_ARG_WITH([xt-lock-name], AS_HELP_STRING([--with-xt-lock-name=PATH],
+       [Path to the xtables lock [[/run/xtables.lock]]]),
+       [xt_lock_name="$withval"],
+       [xt_lock_name="/run/xtables.lock"])
+AC_ARG_ENABLE([profiling],
+       AS_HELP_STRING([--enable-profiling], [build for use of gcov/gprof]),
+       [enable_profiling="$enableval"], [enable_profiling="no"])
 
 AC_MSG_CHECKING([whether $LD knows -Wl,--no-undefined])
 saved_LDFLAGS="$LDFLAGS";
@@ -89,7 +91,7 @@ blacklist_a_modules=""
 blacklist_4_modules=""
 blacklist_6_modules=""
 
-AC_CHECK_HEADERS([linux/dccp.h linux/ip_vs.h linux/magic.h linux/proc_fs.h])
+AC_CHECK_HEADERS([linux/dccp.h linux/ip_vs.h linux/magic.h linux/proc_fs.h linux/bpf.h])
 if test "$ac_cv_header_linux_dccp_h" != "yes"; then
        blacklist_modules="$blacklist_modules dccp";
 fi;
@@ -111,14 +113,15 @@ AM_CONDITIONAL([ENABLE_SYNCONF], [test "$enable_nfsynproxy" = "yes"])
 AM_CONDITIONAL([ENABLE_NFTABLES], [test "$enable_nftables" = "yes"])
 AM_CONDITIONAL([ENABLE_CONNLABEL], [test "$enable_connlabel" = "yes"])
 
-if test "x$enable_bpfc" = "xyes" || test "x$enable_nfsynproxy" = "xyes"; then
-       AC_CHECK_LIB(pcap, pcap_compile,, AC_MSG_ERROR(missing libpcap library required by bpf compiler or nfsynproxy tool))
-fi
-
 PKG_CHECK_MODULES([libnfnetlink], [libnfnetlink >= 1.0],
        [nfnetlink=1], [nfnetlink=0])
 AM_CONDITIONAL([HAVE_LIBNFNETLINK], [test "$nfnetlink" = 1])
 
+if test "x$enable_bpfc" = "xyes" || test "x$enable_nfsynproxy" = "xyes"; then
+       PKG_CHECK_MODULES([libpcap], [libpcap], [], [
+               AC_MSG_ERROR(missing libpcap library required by bpf compiler or nfsynproxy tool)])
+fi
+
 if test "x$enable_nftables" = "xyes"; then
        PKG_CHECK_MODULES([libmnl], [libmnl >= 1.0], [mnl=1], [mnl=0])
 
@@ -131,7 +134,7 @@ if test "x$enable_nftables" = "xyes"; then
                exit 1
        fi
 
-       PKG_CHECK_MODULES([libnftnl], [libnftnl >= 1.0.5], [nftables=1], [nftables=0])
+       PKG_CHECK_MODULES([libnftnl], [libnftnl >= 1.2.6], [nftables=1], [nftables=0])
 
        if test "$nftables" = 0;
        then
@@ -141,37 +144,6 @@ if test "x$enable_nftables" = "xyes"; then
                echo "    iptables-compat over nftables support."
                exit 1
        fi
-
-       AM_PROG_LEX
-       AC_PROG_YACC
-
-       if test -z "$ac_cv_prog_YACC"
-       then
-               echo "*** Error: No suitable bison/yacc found. ***"
-               echo "    Please install the 'bison' package."
-               exit 1
-       fi
-       if test -z "$ac_cv_prog_LEX"
-       then
-               echo "*** Error: No suitable flex/lex found. ***"
-               echo "    Please install the 'flex' package."
-               exit 1
-       fi
-
-       AC_MSG_CHECKING(flex version)
-       flex_version=`$ac_cv_prog_LEX --version | sed 's/version//g' | awk '/flex/ {print $2}'`
-       flex_major=`echo $flex_version| cut -d . -f 1`
-       flex_minor=`echo $flex_version| cut -d . -f 2`
-       flex_rev=`echo $flex_version| cut -d . -f 3`
-
-       if test "$flex_major" -eq "2" && test "$flex_minor" -eq "5" && test "$flex_rev" -ge "33"; then
-               AC_MSG_RESULT([$flex_version. OK])
-       else
-               AC_MSG_WARN([flex version $flex_version found.
-               Version 2.5.33 or greater is required. You may experience problems
-               while compilating the nftables compatibility layer for iptables.
-               Please, consider to upgrade flex.])
-       fi
 fi
 
 AM_CONDITIONAL([HAVE_LIBMNL], [test "$mnl" = 1])
@@ -184,13 +156,13 @@ fi
 
 if test "x$enable_connlabel" = "xyes"; then
        PKG_CHECK_MODULES([libnetfilter_conntrack],
-               [libnetfilter_conntrack >= 1.0.4],
+               [libnetfilter_conntrack >= 1.0.6],
                [nfconntrack=1], [nfconntrack=0])
 
        if test "$nfconntrack" -ne 1; then
                blacklist_modules="$blacklist_modules connlabel";
                echo "WARNING: libnetfilter_conntrack not found, connlabel match will not be built";
-               enable_connlabel = "no";
+               enable_connlabel="no";
        fi;
 else
        blacklist_modules="$blacklist_modules connlabel";
@@ -207,6 +179,7 @@ AC_SUBST([blacklist_6_modules])
 
 regular_CFLAGS="-Wall -Waggregate-return -Wmissing-declarations \
        -Wmissing-prototypes -Wredundant-decls -Wshadow -Wstrict-prototypes \
+       -Wlogical-op \
        -Winline -pipe";
 regular_CPPFLAGS="${largefile_cppflags} -D_REENTRANT \
        -DXTABLES_LIBDIR=\\\"\${xtlibdir}\\\" -DXTABLES_INTERNAL";
@@ -219,6 +192,11 @@ if [[ -n "$ksourcedir" ]]; then
 fi;
 pkgdatadir='${datadir}/xtables';
 
+if test "x$enable_profiling" = "xyes"; then
+       regular_CFLAGS+=" -fprofile-arcs -ftest-coverage"
+       regular_LDFLAGS+=" -lgcov --coverage"
+fi
+
 define([EXPAND_VARIABLE],
 [$2=[$]$1
 if test $prefix = 'NONE'; then
@@ -236,6 +214,7 @@ eval "$2=[$]$2"
 AC_SUBST([regular_CFLAGS])
 AC_SUBST([regular_CPPFLAGS])
 AC_SUBST([noundef_LDFLAGS])
+AC_SUBST([regular_LDFLAGS])
 AC_SUBST([kinclude_CPPFLAGS])
 AC_SUBST([kbuilddir])
 AC_SUBST([ksourcedir])
@@ -247,6 +226,10 @@ AC_SUBST([libxtables_vage])
 libxtables_vmajor=$(($libxtables_vcurrent - $libxtables_vage));
 AC_SUBST([libxtables_vmajor])
 
+AC_DEFINE_UNQUOTED([XT_LOCK_NAME], "${xt_lock_name}",
+       [Location of the iptables lock file])
+AC_SUBST([XT_LOCK_NAME], "${xt_lock_name}")
+
 AC_CONFIG_FILES([Makefile extensions/GNUmakefile include/Makefile
        iptables/Makefile iptables/xtables.pc
        iptables/iptables.8 iptables/iptables-extensions.8.tmpl
@@ -256,7 +239,10 @@ AC_CONFIG_FILES([Makefile extensions/GNUmakefile include/Makefile
        libiptc/Makefile libiptc/libiptc.pc
        libiptc/libip4tc.pc libiptc/libip6tc.pc
        libxtables/Makefile utils/Makefile
-       include/xtables-version.h include/iptables/internal.h])
+       include/xtables-version.h
+       iptables/xtables-monitor.8
+       utils/nfnl_osf.8
+       utils/nfbpf_compile.8])
 AC_OUTPUT
 
 
@@ -274,13 +260,15 @@ Iptables Configuration:
   nfsynproxy util support:             ${enable_nfsynproxy}
   nftables support:                    ${enable_nftables}
   connlabel support:                   ${enable_connlabel}
+  profiling support:                   ${enable_profiling}
 
 Build parameters:
   Put plugins into executable (static):        ${enable_static}
   Support plugins via dlopen (shared): ${enable_shared}
   Installation prefix (--prefix):      ${prefix}
   Xtables extension directory:         ${e_xtlibdir}
-  Pkg-config directory:                        ${e_pkgconfigdir}"
+  Pkg-config directory:                        ${e_pkgconfigdir}
+  Xtables lock file:                   ${xt_lock_name}"
 
 if [[ -n "$ksourcedir" ]]; then
        echo "  Kernel source directory:                ${ksourcedir}"