mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Add check for recent versions of gmp
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@8805 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e6a40fa627
commit
8cd613c188
3 changed files with 525 additions and 399 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-01-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* configure.in: Add check for rexcent versions of gmp
|
||||
|
||||
2001-01-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSException.m: Modify default handler to permit simple
|
||||
|
|
|
@ -880,6 +880,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…
Reference in a new issue