summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2014-07-02 11:41:43 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2014-07-02 11:41:43 +0000
commiteb398645f08db86a45fad4304894e01469543aaa (patch)
tree1e6cde3039e99b1ddb839eee714e38e603b15031 /configure.ac
parent4ee70bd35959ae283a2e4db373f87f3244a20531 (diff)
downloadmpfr-eb398645f08db86a45fad4304894e01469543aaa.tar.gz
Renamed WANT_MINI_GMP to MPFR_USE_MINI_GMP as it is used in mpfr.h
(all MPFR macros that appear there should start with MPFR_ to avoid conflicts with other software). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@9129 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4507e2ac5..5e98284cb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -339,7 +339,7 @@ test_libgmp=__gmpz_init
AC_ARG_ENABLE(mini-gmp,
[ --enable-mini-gmp build MPFR with mini-gmp (experimental) [[default=no]]],
[ case $enableval in
- yes) AC_DEFINE([WANT_MINI_GMP],1,[Use mini-gmp])
+ yes) AC_DEFINE([MPFR_USE_MINI_GMP],1,[Use mini-gmp])
test_libgmp=mpz_init;;
no) ;;
*) AC_MSG_ERROR([bad value for --enable-mini-gmp: yes or no]) ;;