From 825f9ea05225aa5b6c959df6611dd67ad4fb107b Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sun, 31 Oct 2010 00:33:25 +0200 Subject: build: default to not building static libraries Signed-off-by: Jan Engelhardt --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index c4cc36e..f73f323 100644 --- a/configure.ac +++ b/configure.ac @@ -8,6 +8,7 @@ AM_INIT_AUTOMAKE([-Wall foreign subdir-objects dist-bzip2 1.6]) AC_PROG_CC AC_EXEEXT +AC_DISABLE_STATIC AM_PROG_LIBTOOL AC_PROG_INSTALL -- cgit v1.2.3 From 32f4ea52b13641002854fe6abf65a16b2167d35e Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sun, 31 Oct 2010 10:11:18 +0100 Subject: build: use AC_OUTPUT Signed-off-by: Jan Engelhardt --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f73f323..3831697 100644 --- a/configure.ac +++ b/configure.ac @@ -23,4 +23,6 @@ dnl Dependencies PKG_CHECK_MODULES([LIBNFNETLINK], [libnfnetlink >= 0.0.41]) dnl Output the makefiles -AC_OUTPUT(Makefile include/Makefile include/libnetfilter_queue/Makefile src/Makefile utils/Makefile libnetfilter_queue.pc doxygen.cfg) +AC_CONFIG_FILES([Makefile include/Makefile include/libnetfilter_queue/Makefile + src/Makefile utils/Makefile libnetfilter_queue.pc doxygen.cfg]) +AC_OUTPUT -- cgit v1.2.3