diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2008-09-12 16:34:19 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2008-09-12 16:34:19 +0000 |
commit | 20bfb20c6799e39ad989c894fb5b3e6570170cbc (patch) | |
tree | 9ecaa34353eb997e4dc07077e349909f901938f1 | |
parent | ceafbc713d46fa0a6e61806ff0c95ae25803e4b4 (diff) | |
download | mpfr-20bfb20c6799e39ad989c894fb5b3e6570170cbc.tar.gz |
Updated version to 2.3.3-dev.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/2.3@5628 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r-- | INSTALL | 6 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | mpfr.h | 4 | ||||
-rw-r--r-- | mpfr.texi | 6 | ||||
-rw-r--r-- | tests/tversion.c | 2 | ||||
-rw-r--r-- | version.c | 2 |
7 files changed, 12 insertions, 12 deletions
@@ -13,10 +13,10 @@ MPFR). 2. It is strongly advised to apply the latest patches (if this has not been done yet), e.g. - wget http://www.mpfr.org/mpfr-2.3.2/patches + wget http://www.mpfr.org/mpfr-2.3.3/patches patch -N -Z -p1 < patches or - curl http://www.mpfr.org/mpfr-2.3.2/patches | patch -N -Z -p1 + curl http://www.mpfr.org/mpfr-2.3.3/patches | patch -N -Z -p1 3. In the MPFR directory, to detect your system, type: ./configure @@ -134,7 +134,7 @@ Several documents may help you to solve the problem: * the FAQ (either the FAQ.html file distributed with MPFR, or the on-line version <http://www.mpfr.org/faq.html>, which may be more up-to-date); - * the MPFR web page for this version <http://www.mpfr.org/mpfr-2.3.2/>, + * the MPFR web page for this version <http://www.mpfr.org/mpfr-2.3.3/>, which lists bugs found in this version and provides some patches. If the "configure" fails, please check that the C compiler and its @@ -1 +1 @@ -2.3.2 +2.3.3-dev diff --git a/configure.in b/configure.in index f7850140b..e8bac8fd2 100644 --- a/configure.in +++ b/configure.in @@ -24,7 +24,7 @@ MA 02110-1301, USA. dnl If MPFR becomes GNU MPFR, change to GNU MPFR in update-version dnl Add check-news when it checks for more than 15 lines -AC_INIT([MPFR],[2.3.2]) +AC_INIT([MPFR],[2.3.3-dev]) AM_INIT_AUTOMAKE([1.10.1 no-define dist-bzip2 dist-lzma dist-zip]) dnl AM_MAINTAINER_MODE(enable) @@ -26,8 +26,8 @@ MA 02110-1301, USA. */ /* Define MPFR version number */ #define MPFR_VERSION_MAJOR 2 #define MPFR_VERSION_MINOR 3 -#define MPFR_VERSION_PATCHLEVEL 2 -#define MPFR_VERSION_STRING "2.3.2" +#define MPFR_VERSION_PATCHLEVEL 3 +#define MPFR_VERSION_STRING "2.3.3-dev" /* Macros dealing with MPFR VERSION */ #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) @@ -2,7 +2,7 @@ @c %**start of header @setfilename mpfr.info @documentencoding ISO-8859-1 -@set VERSION 2.3.2 +@set VERSION 2.3.3-dev @set UPDATED-MONTH August 2008 @settitle MPFR @value{VERSION} @synindex tp fn @@ -407,7 +407,7 @@ specific to MPFR). Problems are also mentioned in the FAQ Please report problems to @samp{mpfr@@loria.fr}. @xref{Reporting Bugs}. Some bug fixes are available on the -MPFR 2.3.2 web page @url{http://www.mpfr.org/mpfr-2.3.2/}. +MPFR 2.3.3 web page @url{http://www.mpfr.org/mpfr-2.3.3/}. @section Getting the Latest Version of MPFR @@ -421,7 +421,7 @@ The latest version of MPFR is available from @url{http://www.mpfr.org/}. @comment Warning! Do not split "MPFR ... @url{...}" across several lines @comment as this needs to be updated with update-version. If you think you have found a bug in the MPFR library, first have a look -on the MPFR 2.3.2 web page @url{http://www.mpfr.org/mpfr-2.3.2/} and the +on the MPFR 2.3.3 web page @url{http://www.mpfr.org/mpfr-2.3.3/} and the FAQ @url{http://www.mpfr.org/faq.html}: perhaps this bug is already known, in which case you may find there a workaround for it. Otherwise, please investigate and report it. diff --git a/tests/tversion.c b/tests/tversion.c index 794c8b5db..9bc5d7b0b 100644 --- a/tests/tversion.c +++ b/tests/tversion.c @@ -37,7 +37,7 @@ main (void) version = mpfr_get_version (); /* This test is disabled when a suffix (e.g. -dev) has been defined. */ -#if 1 +#if 0 sprintf (buffer, "%d.%d.%d", MPFR_VERSION_MAJOR, MPFR_VERSION_MINOR, MPFR_VERSION_PATCHLEVEL); if (strcmp (buffer, version) != 0) @@ -25,5 +25,5 @@ MA 02110-1301, USA. */ const char * mpfr_get_version (void) { - return "2.3.2"; + return "2.3.3-dev"; } |