diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2014-07-02 11:41:43 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2014-07-02 11:41:43 +0000 |
commit | eb398645f08db86a45fad4304894e01469543aaa (patch) | |
tree | 1e6cde3039e99b1ddb839eee714e38e603b15031 /src/nrandom.c | |
parent | 4ee70bd35959ae283a2e4db373f87f3244a20531 (diff) | |
download | mpfr-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 'src/nrandom.c')
-rw-r--r-- | src/nrandom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nrandom.c b/src/nrandom.c index f4b8a0708..912562792 100644 --- a/src/nrandom.c +++ b/src/nrandom.c @@ -53,7 +53,7 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., /* this file cannot be compiled with mini-gmp since it relies on mpfr_random_deviate_value which needs mpq_t */ -#ifndef WANT_MINI_GMP +#ifndef MPFR_USE_MINI_GMP #include "random_deviate.h" /* Algorithm H: true with probability exp(-1/2). */ |