From 4dd73e4e34b57685d8a85e041f6a0b4a65200e30 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Mon, 26 Jan 2009 19:30:33 +0100 Subject: build: upgrade build system - add .gitignore files - replace outdated autoconf macros by new constructs, including autogen.sh - and use AC_CONFIG_MACRO_DIR as suggested by libtool2: libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. Signed-off-by: Jan Engelhardt Signed-off-by: Pablo Neira Ayuso --- configure.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index c430df7..cd2e7d5 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,8 @@ AC_INIT(conntrack-tools, 0.9.10, pablo@netfilter.org) AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE +AC_CONFIG_MACRO_DIR([m4]) +AM_INIT_AUTOMAKE([-Wall]) AC_PROG_CC AM_PROG_LIBTOOL @@ -130,4 +131,5 @@ CFLAGS="$CFLAGS $LIBNETFILTER_CONNTRACK_CFLAGS" AC_SUBST(LIBNETFILTER_CONNTRACK_LIBS) -AC_OUTPUT(Makefile src/Makefile include/Makefile extensions/Makefile) +AC_CONFIG_FILES([Makefile src/Makefile include/Makefile extensions/Makefile]) +AC_OUTPUT -- cgit v1.2.3