summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2012-05-12 15:22:39 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2012-05-12 15:22:39 -0400
commit5ea8935a8499c04b5f10e48dd11c35623539b286 (patch)
treea514d5f95980ea6e8ccff0b34fa6e5815e7e698c /configure.ac
parente7097453fe0dc09ecc9f54d8977da9e5aa176df1 (diff)
Automake 1.12 compatibility, based on suggestions by Lance Hepler
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index a105f521..1718b30b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,11 @@
AC_INIT([urweb], [20120512])
WORKING_VERSION=1
AC_USE_SYSTEM_EXTENSIONS
+
+# automake 1.12 requires this, but automake 1.11 doesn't recognize it
+m4_pattern_allow([AM_PROG_AR])
+AM_PROG_AR
+
AM_INIT_AUTOMAKE([-Wall -Werror foreign no-define])
AC_PROG_CC()
AC_PROG_LIBTOOL()