summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2013-06-02 14:17:52 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2013-06-02 14:17:52 +0000
commit6eadafba22867f7b5b95b5efd34e29ce413d5be4 (patch)
tree7ad406ff9c06822c9a20867a30c3a6f87aba4b7d /configure.ac
parentec5cc956b092b458be941808c3ce293a989cea41 (diff)
downloadmpfr-6eadafba22867f7b5b95b5efd34e29ce413d5be4.tar.gz
[configure.ac] In AM_INIT_AUTOMAKE, require Automake 1.11.6 for
AM_PROG_AR and security reasons. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8572 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8edccf525..79e04ab84 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,7 +25,10 @@ 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])
-AM_INIT_AUTOMAKE([1.11 no-define dist-bzip2 dist-xz dist-zip])
+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])
AM_MAINTAINER_MODE(enable)
AC_CONFIG_MACRO_DIR([m4])