From: Jens Vollinga Date: Wed, 25 Feb 2009 14:03:38 +0000 (+0100) Subject: Repairing the preparing of the release. X-Git-Tag: release_1-5-1 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=1d0ab629c691c48e6aa6c291a052f27b726b26ff Repairing the preparing of the release. --- diff --git a/NEWS b/NEWS index 775cca35..1c863785 100644 --- a/NEWS +++ b/NEWS @@ -2,7 +2,7 @@ This file records noteworthy changes. 1.5.1 (25 February 2009) * Fixed compiling problems with GNU g++ 3.4. -* Fixed broken RTTI on woe32. +* Work around weird C++ RTTI behaviour on woe32 so GiNaC works on MinGW again. 1.5.0 (17 February 2009) * Added polynomial factorization. diff --git a/configure.ac b/configure.ac index f86b041f..e88bf4ae 100644 --- a/configure.ac +++ b/configure.ac @@ -24,9 +24,9 @@ dnl systems, the numbering is consecutive. It only guarantees that it is dnl increasing. This doesn't matter, though: there is not incurred cost dnl for numbers that are omitted, except for shrinking the available space dnl of leftover numbers. Not something we need to worry about yet. ;-) -m4_define([ginac_lt_current], [1]) -m4_define([ginac_lt_age], [1]) -m4_define([ginac_lt_revision], [0]) +m4_define([ginac_lt_current], [0]) +m4_define([ginac_lt_age], [0]) +m4_define([ginac_lt_revision], [1]) AC_INIT([GiNaC], ginac_version, []) AC_PREREQ(2.59)