]> www.ginac.de Git - cln.git/commitdiff
Finalize CLN 1.3.2 release. cln_1-3-2
authorRichard Kreckel <kreckel@ginac.de>
Sun, 8 May 2011 20:26:25 +0000 (22:26 +0200)
committerRichard Kreckel <kreckel@ginac.de>
Sun, 8 May 2011 20:26:25 +0000 (22:26 +0200)
INSTALL
NEWS
configure.ac

diff --git a/INSTALL b/INSTALL
index 5f28b224d2e75f23c492e8c914369d6bb2fb082b..8eca4fdc583750b8368f9718d51bb22f79bd19b5 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -89,7 +89,7 @@ CLN is known to work with:
 =========================
 
   - Linux/x86, gcc-3.x, gcc-4.[0-5].x
-  - Linux/x86_64, gcc-3.[3-4], gcc-4.[0-5].x
+  - Linux/x86_64, gcc-3.[3-4], gcc-4.[0-6].x, clang-2.8
   - Linux/ia64, gcc-3.[2-4], gcc-4.[0-4].x
   - Linux/arm, gcc-3.[0-3] (*), gcc-4.[0-4].x (*)
   - Linux/mips, gcc-3.3, gcc-4.[0-4].x
diff --git a/NEWS b/NEWS
index e75f93c2b67055cbd4db4573f6a7dd75db5e2147..e1977e21831b1897e54018be4e49f3d474996cb9 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,18 @@
+2011-05-08, version 1.3.2
+=========================
+
+Implementation changes
+----------------------
+
+* Fixed a bug in scale_float(cl_LF, cl_I) when the scale factor exceeded 2^31
+  on x86.
+
+Other changes
+-------------
+
+* Improved portability to some non-GCC compilers.
+
+
 2009-09-24, version 1.3.1
 =========================
 
index 273069f4d1700c156edafb4b63556356348cbc64..054e1d71621bee3e2069167e61609892fbfffb92 100644 (file)
@@ -2,7 +2,7 @@ dnl run autoreconf -iv to produce the configure script.
 
 m4_define([cl_version_major], [1])
 m4_define([cl_version_minor], [3])
-m4_define([cl_version_patchlevel], [1])
+m4_define([cl_version_patchlevel], [2])
 m4_define([cl_version], [cl_version_major.cl_version_minor.cl_version_patchlevel])
 
 dnl Libtool's library version information for CLN.
@@ -16,7 +16,7 @@ dnl * if any interfaces have been removed, set cl_lt_age to 0.
 dnl (On many systems, $(cl_lt_current):$(cl_lt_revision):$(cl_lt_age) results in
 dnl libcln.so.$(cl_lt_current)-$(cl_lt_age).)
 m4_define([cl_lt_current], [6])
-m4_define([cl_lt_revision], [1])
+m4_define([cl_lt_revision], [2])
 m4_define([cl_lt_age], [0])
 m4_define([cl_lt_version], [cl_lt_current:cl_lt_revision:cl_lt_age])
 
@@ -24,6 +24,7 @@ AC_INIT([cln], cl_version)
 AC_PREREQ(2.59)
 AC_CONFIG_SRCDIR(src/integer/gcd/cl_I_gcd.cc)
 AC_CONFIG_AUX_DIR([autoconf])
+AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_HEADERS(autoconf/cl_config.h include/cln/config.h include/cln/host_cpu.h include/cln/version.h src/base/cl_base_config.h src/base/cl_gmpconfig.h src/timing/cl_t_config.h)
 AM_INIT_AUTOMAKE([foreign 1.10 dist-bzip2])
 AH_TOP([#ifndef _CL_CONFIG_H])