From: polyester Date: Sat, 25 Jan 2014 17:55:58 +0000 (+0100) Subject: work with newer versions of automake X-Git-Tag: jq-1.4~27^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ed3adb091895aebb12ee4c5899d8fc64ef392d9;p=jq 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. --- diff --git a/configure.ac b/configure.ac index e9a069f..41b6e50 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