summaryrefslogtreecommitdiff
path: root/gmp.texi
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-10-01 02:48:16 +0200
committerKevin Ryde <user42@zip.com.au>2001-10-01 02:48:16 +0200
commitc1f25ac672ec852433b7d3b66177a2e41e26dd61 (patch)
tree3fba92112498e4fd8c07e6de935af33a6533e924 /gmp.texi
parent7e476d6aab9601cd811ff174c0e00794557482d9 (diff)
downloadgmp-c1f25ac672ec852433b7d3b66177a2e41e26dd61.tar.gz
* gmp.texi, Makefile.am, compat.c: Amend version 3.2 to 4.0.
Diffstat (limited to 'gmp.texi')
-rw-r--r--gmp.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/gmp.texi b/gmp.texi
index 16b578021..25f05f7db 100644
--- a/gmp.texi
+++ b/gmp.texi
@@ -2025,7 +2025,7 @@ past versions.
Occasionally an application will need or want to know the size of a type at
configuration or preprocessing time, not just with @code{sizeof} in the code.
-This can be done in the normal way with @code{mp_limb_t} etc, but GMP 3.2 or
+This can be done in the normal way with @code{mp_limb_t} etc, but GMP 4.0 or
up is best for this, since prior versions needed certain @samp{-D} defines on
systems using a @code{long long} limb. The following would suit Autoconf 2.50
or up,
@@ -2043,7 +2043,7 @@ compatibility is not guaranteed.
@example
AC_CHECK_LIB(mpfr, mpfr_add, , [AC_MSG_ERROR(
-[Need MPFR either from GNU MP 3.2 or separate MPFR package.
+[Need MPFR either from GNU MP @value{VERSION} or separate MPFR package.
See http://www.mpfr.org or http://www.swox.com/gmp])
@end example