summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2013-06-02 19:07:51 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2013-06-02 19:07:51 +0000
commitfc01202f97eca2f361a11d8cf2d784101a799e0f (patch)
treebbcb9fcb2f058a19a76e00ba4feecd11af6e79dd /configure.ac
parent6eadafba22867f7b5b95b5efd34e29ce413d5be4 (diff)
downloadmpfr-fc01202f97eca2f361a11d8cf2d784101a799e0f.tar.gz
[configure.ac] In AM_INIT_AUTOMAKE, lowered Automake version requirement
to 1.11.2 (for AM_PROG_AR), as Ubuntu 12.04 LTS only has Automake 1.11.3 (we assume that such distributions have a security patch). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8573 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 79e04ab84..73d69060b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,10 +25,11 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
dnl Add check-news when it checks for more than 15 lines
AC_INIT([MPFR],[3.2.0-dev])
-dnl Automake 1.11.2 is required for AM_PROG_AR, but let's even require
-dnl 1.11.6 for security reasons (similarly, if you have 1.12, make sure
-dnl that you have at least 1.12.2).
-AM_INIT_AUTOMAKE([1.11.6 no-define dist-bzip2 dist-xz dist-zip])
+dnl Automake 1.11.2 is required for AM_PROG_AR (but note that
+dnl unless a security patch has been applied to Automake, e.g.
+dnl via an OS distribution, Automake versions up to 1.11.6 are
+dnl vulnerable for "make distcheck").
+AM_INIT_AUTOMAKE([1.11.2 no-define dist-bzip2 dist-xz dist-zip])
AM_MAINTAINER_MODE(enable)
AC_CONFIG_MACRO_DIR([m4])