summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2011-12-29 19:32:12 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2011-12-29 19:32:12 +0100
commite6a8a21557794c3400e8621681d22e1b45c76a7c (patch)
tree13e8b0b5f578d116e8fcc0f26039c5865337a443 /configure.ac
parent96850b291a147226210b9fb71fff59e6880a4b02 (diff)
build: update configure.ac and gcc4_visibility.m4
This patch includes the recent changes that Jan proposed for other library. Also, this patch relaxes the libmnl dependency to >= 1.0.0 (previously it checked for 1.0.1, not really required). Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 80191fd..62322c6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,16 +1,18 @@
dnl Process this file with autoconf to create configure.
AC_INIT([libnetfilter_acct], [1.0.0])
+AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_HOST
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
-AM_INIT_AUTOMAKE([foreign dist-bzip2 1.6 subdir-objects])
+
+AM_INIT_AUTOMAKE([foreign tar-pax no-dist-gzip dist-bzip2 1.6 subdir-objects])
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
dnl Dependencies
-PKG_CHECK_MODULES([LIBMNL], [libmnl >= 1.0.1])
+PKG_CHECK_MODULES([LIBMNL], [libmnl >= 1.0.0])
AC_PROG_CC
AM_PROG_CC_C_O