diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2011-08-05 14:22:26 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2011-08-05 14:22:26 +0000 |
commit | 61ab97cbc64a757e65fd7b45b9119b0af0945b8f (patch) | |
tree | 277b53b086f86c97ca52c07e1940c12419918f24 /configure.ac | |
parent | 5c19f5acde7a5ff901b5449591399249d9ef0476 (diff) | |
download | mpfr-61ab97cbc64a757e65fd7b45b9119b0af0945b8f.tar.gz |
[src/mulders.c] use mpn_sbpi1_divappr_q if available and WANT_GMP_INTERNALS
is defined
[src/mpfr-gmp.h] defined macros needed for mpfr_divhigh_n_basecase
[configure.ac] check for mpn_sbpi1_divappr_q
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@7787 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b6b0500a7..662361849 100644 --- a/configure.ac +++ b/configure.ac @@ -501,7 +501,8 @@ dnl WANT_GMP_INTERNALS is defined. Only the GMP public API should be used dnl by default, in particular by binary distributions. Moreover the check dnl below may yield an incorrect result as libtool isn't used in configure dnl (see above). -AC_CHECK_FUNCS([__gmpn_rootrem]) +dnl Same for __gmpn_sbpi1_divappr_q. +AC_CHECK_FUNCS([__gmpn_rootrem __gmpn_sbpi1_divappr_q]) dnl End of tests which need to link with GMP. fi |