summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore11
-rw-r--r--configure.ac4
2 files changed, 7 insertions, 8 deletions
diff --git a/.gitignore b/.gitignore
index c9550f5..f4938e9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
-.deps
-.libs
+.deps/
+.libs/
Makefile
Makefile.in
*.o
@@ -7,14 +7,11 @@ Makefile.in
*.lo
/aclocal.m4
-/autom4te.cache
+/autom4te.cache/
+/build-aux/
/config.*
/configure
-/depcomp
-/install-sh
/libtool
-/ltmain.sh
-/missing
/doxygen.cfg
/*.pc
diff --git a/configure.ac b/configure.ac
index eab4a7d..e7d8fcb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,10 +1,12 @@
dnl Process this file with autoconf to create configure.
AC_INIT([libnetfilter_conntrack], [0.9.1])
+AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_HOST
AC_CONFIG_MACRO_DIR([m4])
-AM_INIT_AUTOMAKE([-Wall foreign subdir-objects dist-bzip2 1.6])
+AM_INIT_AUTOMAKE([-Wall foreign subdir-objects
+ tar-pax no-dist-gzip dist-bzip2 1.6])
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])