AC_SUBST(DESLIB)
AC_SUBST(KRB4LIB)
-AC_ARG_WITH([mini-gmp],
- [AS_HELP_STRING([--without-mini-gmp],
- [don't compile and use mini-gmp, a substitute for the
- GNU Multiple Precision (GMP) library; this is the
- default on systems with recent-enough GMP.])])
+AC_ARG_WITH([libgmp],
+ [AS_HELP_STRING([--without-libgmp],
+ [don't use the GNU Multiple Precision (GMP) library;
+ this is the default on systems lacking libgmp.])])
GMP_LIB=
GMP_OBJ=mini-gmp-emacs.o
HAVE_GMP=no
-case $with_mini_gmp in
- yes) ;;
- no) HAVE_GMP=yes GMP_LIB=-lgmp;;
+case $with_libgmp in
+ no) ;;
+ yes) HAVE_GMP=yes GMP_LIB=-lgmp;;
*) AC_CHECK_HEADERS([gmp.h],
[OLIBS=$LIBS
AC_SEARCH_LIBS([__gmpz_roinit_n], [gmp])
@defun bignump object
This predicate tests whether its argument is a large integer, and
-returns @code{t} if so, @code{nil} otherwise. Large integers cannot
-be compared with @code{eq}, only with @code{=} or @code{eql}. Also,
-large integers are only available if Emacs was compiled with the GMP
-library.
+returns @code{t} if so, @code{nil} otherwise. Unlike small integers,
+large integers can be @code{=} or @code{eql} even if they are not @code{eq}.
@end defun
@defun fixnump object
** Emacs now uses GMP, the GNU Multiple Precision library.
By default, if 'configure' does not find a suitable libgmp, it
arranges for the included mini-gmp library to be built and used.
-The new 'configure' option --with-mini-gmp uses mini-gmp even if a
+The new 'configure' option --without-libgmp uses mini-gmp even if a
suitable libgmp is available.
** The new configure option '--with-json' adds support for JSON using