summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormalosek <malosek@fastmq.com>2010-01-05 13:46:35 +0100
committermalosek <malosek@fastmq.com>2010-01-05 13:46:35 +0100
commit8d339e959694107df8f1666634a34f54ad76ae41 (patch)
treef9dbf44ebdf86fff4aa34fd4245bee347656d15d
parent11fec367d1a13c3f0248f8542eb805b8d9571685 (diff)
Fixed newer autotools warningng about AC_CONFIG_MACRO_DIR
-rw-r--r--Makefile.am2
-rw-r--r--configure.in1
2 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index d629ed0..81d1598 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,3 +1,5 @@
+ACLOCAL_AMFLAGS = -I config
+
if BUILD_PERF
DIR_PERF = perf
endif
diff --git a/configure.in b/configure.in
index 089e536..ba7a302 100644
--- a/configure.in
+++ b/configure.in
@@ -3,6 +3,7 @@
AC_PREREQ(2.61)
AC_INIT([zeromq],[dev],[http://www.zeromq.org])
AC_CONFIG_AUX_DIR(config)
+AC_CONFIG_MACRO_DIR(config)
AM_CONFIG_HEADER(src/platform.hpp)
AM_INIT_AUTOMAKE(tar-ustar)