summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorpolyester <paul@cleanclothes.org>2014-01-25 18:55:58 +0100
committerpolyester <paul@cleanclothes.org>2014-01-25 18:55:58 +0100
commit6ed3adb091895aebb12ee4c5899d8fc64ef392d9 (patch)
treee699ed0be86185dfdaeac72cd82f3ce6370cc0ff /configure.ac
parent106fdf5114b639c6b5e97e317b857da3a58b6233 (diff)
work with newer versions of automake
when using a newer automake, the autoreconf step fails with warnings: "linking libtool libraries using a non-POSIX archiver requires 'AM_PROG_AR' in 'configure.ac' " This happens for instance on ubuntu 13.10. Doing just that, adding 'AM_PROG_AR' to configure.ac fixes the problem.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index e9a069fc..41b6e504 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8,6 +8,7 @@ AC_PREREQ([2.61])
AC_CONFIG_AUX_DIR([config])
AM_INIT_AUTOMAKE([parallel-tests foreign -Wall])
AM_SILENT_RULES([yes])
+AM_PROG_AR
AC_PROG_CC
AC_PROG_CC_STDC
AC_PROG_CPP_WERROR