Browse Source

* Version 1.1.8 released.

master
Richard Kreckel 21 years ago
parent
commit
7b767b87c6
  1. 4
      ChangeLog
  2. 16
      NEWS
  3. 2
      autoconf/aclocal.m4
  4. 4
      configure.ac

4
ChangeLog

@ -1,3 +1,7 @@
2004-07-01 Richard B. Kreckel <kreckel@ginac.de>
* Version 1.1.8 released.
2004-06-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* src/base/cl_macros.h: alloca(3) has size_t argument type.

16
NEWS

@ -1,3 +1,19 @@
2004-07-01, version 1.1.8
=========================
Implementation changes
----------------------
* Fix bug in log(a,b) when b is 1/n.
* Fix crash in shared library on AMD64.
Other changes
-------------
* Fixes for some language conformance issues.
2004-05-02, version 1.1.7
=========================

2
autoconf/aclocal.m4

@ -4240,7 +4240,7 @@ AC_PREREQ(2.57)
AC_DEFUN([CL_TIMES_CLOCK],
[AC_REQUIRE([CL_GETTIMEOFDAY])dnl
if test $ac_cv_func_gettimeofday = no; then
if test $ac_cv_func_gettimeofday = no -a $ac_cv_func_ftime = no; then
AC_CHECK_FUNC(times, , no_times=1)dnl
if test -z "$no_times"; then
AC_CACHE_CHECK(for times return value, cl_cv_func_times_return, [

4
configure.ac

@ -79,7 +79,7 @@ dnl CL_CURRENT and set CL_REVISION to 0,
dnl * if any functions/classes have been added, increment CL_AGE,
dnl * if backwards compatibility has been broken, set CL_AGE to 0.
CL_CURRENT=3
CL_REVISION=1
CL_REVISION=2
CL_AGE=0
dnl make substitutions
AC_SUBST(CL_CURRENT)
@ -88,7 +88,7 @@ AC_SUBST(CL_AGE)
dnl release version
CL_VERSION_MAJOR=1
CL_VERSION_MINOR=1
CL_VERSION_PATCHLEVEL=7
CL_VERSION_PATCHLEVEL=8
dnl release version for cln/config.h, so it can be tested by the preprocessor
AC_DEFINE_UNQUOTED(CL_VERSION_MAJOR, $CL_VERSION_MAJOR)
AC_DEFINE_UNQUOTED(CL_VERSION_MINOR, $CL_VERSION_MINOR)

Loading…
Cancel
Save