mirror of
https://github.com/gnustep/tools-make.git
synced 2025-05-30 17:01:18 +00:00
Added check for recent version of GMP
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@8806 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2ac0335346
commit
e6e17b6fd3
3 changed files with 436 additions and 318 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-01-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* configure.in: Added check for recent versions of GMP
|
||||
* configure: Regenerated.
|
||||
|
||||
Mon Jan 22 12:55:13 2001 Nicola Pero <nicola@brainstorm.co.uk>
|
||||
|
||||
* configure.in (LD_LIBRARY_PATH): set it before running the tests
|
||||
|
|
|
@ -658,6 +658,9 @@ if test $ac_cv_header_gmp_h = no; then
|
|||
AC_MSG_WARN(Could not find gmp headers)
|
||||
else
|
||||
AC_CHECK_LIB(gmp, mpf_abs, gmp_ok=yes, gmp_ok=no)
|
||||
if test "$gmp_ok" = no; then
|
||||
AC_CHECK_LIB(gmp, __gmpf_abs, gmp_ok=yes, gmp_ok=no)
|
||||
fi
|
||||
if test "$gmp_ok" = yes; then
|
||||
base_libs="$LIBS"
|
||||
LIBS="$LIBS -lgmp"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue