diff options
-rw-r--r-- | README.dev | 9 | ||||
-rw-r--r-- | doc/version.texi | 4 | ||||
-rw-r--r-- | src/get_version.c | 2 | ||||
-rw-r--r-- | src/mpc.h | 2 | ||||
-rw-r--r-- | tests/Makefile.am | 6 |
5 files changed, 10 insertions, 13 deletions
@@ -2,14 +2,14 @@ Source code from the subversion repository ------------------------------------------ To compile source code obtained from the subversion repository, -make sure you have installed the autoconf, automake and libtools packages. +make sure you have installed the autoconf, automake and libtool packages. Execute $ autoreconf -i Required versions: * autoconf >= 2.61 -* automake >= 1.10.1 (maybe older versions work, please report) -* libtool >= 1.5.26 (maybe older versions work, please report) +* automake >= 1.10.1 +* libtool >= 2.2 Creating a new release ---------------------- @@ -27,9 +27,6 @@ Creating a new release 6) Execute "autoreconf; touch doc/mpc.texi; make distcheck". This updates the date and version number in doc/version.texi and creates the tarball for distribution. - Warning: do this on a machine with a recent libtool (for example 2.2.x - instead of 1.5.x which is buggy, cf - http://lists.gforge.inria.fr/pipermail/mpc-discuss/2009-March/000106.html) 7) Create an svn tag from inside the svn root: svn cp trunk tags/VERSION 8) Update the web page on the server. diff --git a/doc/version.texi b/doc/version.texi index c4095f5..928b602 100644 --- a/doc/version.texi +++ b/doc/version.texi @@ -1,4 +1,4 @@ -@set UPDATED 14 January 2011 -@set UPDATED-MONTH January 2011 +@set UPDATED 4 February 2011 +@set UPDATED-MONTH February 2011 @set EDITION 0.9-dev @set VERSION 0.9-dev diff --git a/src/get_version.c b/src/get_version.c index c35fe9c..778666b 100644 --- a/src/get_version.c +++ b/src/get_version.c @@ -24,5 +24,5 @@ MA 02111-1307, USA. */ const char * mpc_get_version (void) { - return "0.9-dev"; + return "0.9-rc1"; } @@ -34,7 +34,7 @@ MA 02111-1307, USA. */ #define MPC_VERSION_MAJOR 0 #define MPC_VERSION_MINOR 9 #define MPC_VERSION_PATCHLEVEL 0 -#define MPC_VERSION_STRING "0.9-dev" +#define MPC_VERSION_STRING "0.9-rc1" /* Macros dealing with MPC VERSION */ #define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) diff --git a/tests/Makefile.am b/tests/Makefile.am index 6c6a39f..4b11f4b 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -19,9 +19,9 @@ libmpc_tests_la_SOURCES=mpc-tests.h random.c tgeneric.c read_data.c \ comparisons.c memory.c EXTRA_DIST = abs.dat acos.dat acosh.dat asin.dat asinh.dat atan.dat atanh.dat \ -add.dat add_fr.dat arg.dat conj.dat cos.dat cosh.dat \ -div.dat div_fr.dat exp.dat fr_div.dat fr_sub.dat inp_str.dat log.dat mul.dat \ -mul_fr.dat neg.dat norm.dat pow.dat pow_ui.dat proj.dat sin.dat sinh.dat sqr.dat \ +add.dat add_fr.dat arg.dat conj.dat cos.dat cosh.dat div.dat div_fr.dat \ +exp.dat fma.dat fr_div.dat fr_sub.dat inp_str.dat log.dat mul.dat mul_fr.dat \ +neg.dat norm.dat pow.dat pow_ui.dat proj.dat sin.dat sinh.dat sqr.dat \ sqrt.dat strtoc.dat sub.dat sub_fr.dat tan.dat tanh.dat TESTS = $(check_PROGRAMS) |