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:
Richard Frith-MacDonald 2001-01-25 17:38:07 +00:00
parent e6a40fa627
commit 8cd613c188
3 changed files with 525 additions and 399 deletions

View file

@ -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

917
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -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"