diff --git a/INSTALL b/INSTALL index 8eca4fd..95f33bc 100644 --- a/INSTALL +++ b/INSTALL @@ -11,7 +11,7 @@ versions might work too). If you install CLN from git, you also need -git itself (http://git.or.cz), version >= 1.5.0 +git itself (http://git-scm.com), version >= 1.5.0 GNU autoconf (http://www.gnu.org/software/autoconf), version >= 2.59 GNU libtool (http://www.gnu.org/software/libtool), version >= 1.5 GNU automake (http://www.gnu.org/software/automake), version >= 1.8 @@ -88,14 +88,14 @@ $ make 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-6].x, clang-2.8 + - Linux/x86, gcc-3.x, gcc-4.[0-9].x + - Linux/x86_64, gcc-3.[3-4], gcc-4.[0-9].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 - - Linux/sparc, gcc-3.[1-3], gcc-4.[0-2].x + - Linux/arm, gcc-3.[0-3] (*), gcc-4.[0-9].x (*) + - Linux/mips, gcc-3.3, gcc-4.[0-9].x + - Linux/sparc, gcc-3.[1-3], gcc-4.[0-9].x - Linux/alpha, gcc-3.[0-3], gcc-4.[0-2].x - - Linux/powerpc, gcc-3.[0-3], gcc-4.[0-4].x + - Linux/powerpc, gcc-3.[0-3], gcc-4.[0-9].x - Linux/hppa, gcc-4.2.x (*) - Solaris 2.4 (sparc), gcc-3.[1-3], gcc-4.[0-2].x (*) - OSF/1 V4.0 (alpha), gcc-3.1 @@ -107,7 +107,7 @@ CLN is known to work with: reported. It may be best to add "-DNO_ASM" to CPPFLAGS before configuring. -Using gcc-4.2, the "make" step takes about 15 minutes, on an x86_64 / 2 GHz. +Using gcc-4.9, the "make" step takes about 15 minutes, on an x86_64 / 2 GHz. If you use g++ from gcc-3.0.4 or older on Sparc, add either "-O", "-O1" or "-O2 -fno-schedule-insns" to the CXXFLAGS. With full "-O2", g++ miscompiles diff --git a/NEWS b/NEWS index 4261670..0e54d33 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,17 @@ +2014-10-16, version 1.3.4 +========================= + +Implementation changes +---------------------- + +* Fix input of huge floats. + +Other changes +------------- + +* Support the AArch64 and the Mips64 ABIs. + + 2013-07-21, version 1.3.3 ========================= diff --git a/README b/README index d445d55..02b51b8 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ Class Library for Numbers Copyright (c) Bruno Haible 1988-2008 -Copyright (c) Richard Kreckel 2000-2012 +Copyright (c) Richard Kreckel 2000-2014 Copyright (c) Alexei Sheplyakov 2008-2010 GPL diff --git a/configure.ac b/configure.ac index beff1ed..667ced0 100644 --- a/configure.ac +++ b/configure.ac @@ -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], [3]) +m4_define([cl_version_patchlevel], [4]) 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], [3]) +m4_define([cl_lt_revision], [4]) m4_define([cl_lt_age], [0]) m4_define([cl_lt_version], [cl_lt_current:cl_lt_revision:cl_lt_age]) diff --git a/doc/cln.texi b/doc/cln.texi index af87eac..ab7e56a 100644 --- a/doc/cln.texi +++ b/doc/cln.texi @@ -36,7 +36,7 @@ Published by Bruno Haible, @code{} and Richard B. Kreckel, @code{}. Copyright (C) Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008. -Copyright (C) Richard B. Kreckel 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013. +Copyright (C) Richard B. Kreckel 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. Copyright (C) Alexei Sheplyakov 2008, 2010. Permission is granted to make and distribute verbatim copies of @@ -73,7 +73,7 @@ by the author. @vskip 0pt plus 1filll Copyright @copyright{} Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008. @sp 0 -Copyright @copyright{} Richard B. Kreckel 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013. +Copyright @copyright{} Richard B. Kreckel 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. @sp 0 Copyright @copyright{} Alexei Sheplyakov 2008, 2010. diff --git a/src/base/cl_free.cc b/src/base/cl_free.cc index 6f8454d..4952b00 100644 --- a/src/base/cl_free.cc +++ b/src/base/cl_free.cc @@ -34,7 +34,7 @@ void cl_free_heap_object (cl_heap* pointer) static const char * copyright_notice[] = { " \n" "Copyright (c) Bruno Haible 1988-2008 \n" - "Copyright (c) Richard Kreckel 2000-2013 \n" + "Copyright (c) Richard Kreckel 2000-2014 \n" "Copyright (c) Alexei Sheplyakov 2008-2010 \n" " \n" "This program is free software; you can redistribute it and/or modify\n"