summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2015-04-17 11:35:37 -0700
committerKeith Packard <keithp@keithp.com>2015-04-17 11:35:37 -0700
commitc66dc19c2d05a3a59320b9111dd50f077bf7315e (patch)
tree04beeddfcc6d21270ca3ed81588c0f88f6301c5b
parenta38c5027dfab030fc4dc89d7daa0f1e8dd9863a1 (diff)
Make libtool happier
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--Makefile.am2
-rwxr-xr-xautogen.sh2
-rw-r--r--configure.ac2
3 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 3972ddb..7cc447a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -26,6 +26,8 @@ pkgconfig_DATA = xpresent.pc
MAINTAINERCLEANFILES = ChangeLog INSTALL
+ACLOCAL_AMFLAGS=-I m4
+
.PHONY: ChangeLog INSTALL
INSTALL:
diff --git a/autogen.sh b/autogen.sh
index 904cd67..354f254 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,4 +9,4 @@ cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure --enable-maintainer-mode "$@"
+$srcdir/configure "$@"
diff --git a/configure.ac b/configure.ac
index 51d3f96..a88ca7f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,6 +36,8 @@ AC_INIT(libXpresent, [1.0.0],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXpresent])
AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_AUX_DIR([.])
+AC_CONFIG_MACRO_DIR([m4])
# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-bzip2])