Browse Source

* configure.in: adjust lt-versions, taking into account that a

change in prototype breaks compatibility in C++.  :-(
        * INSTALL: sync compiler options with doc/cln.tex.
        * NEWS: adjust date.
master
Richard Kreckel 24 years ago
parent
commit
6fbd96f19e
  1. 4
      ChangeLog
  2. 8
      INSTALL
  3. 2
      NEWS
  4. 6
      configure.in

4
ChangeLog

@ -1,3 +1,7 @@
2000-05-31 Richard Kreckel <kreckel@ginac.de>
* Version 1.1.1 released.
2001-05-28 Richard Kreckel <kreckel@ginac.de>
* cln/cln.tex: documented problems with shared library on Sparc

8
INSTALL

@ -29,9 +29,11 @@ to the CXXFLAGS. This will likely generate better code.
If you use g++ from gcc-2.95.x on Sparc, add either "-O", "-O1" or
"-O2 -fno-schedule-insns" to the CXXFLAGS. With full "-O2", g++ miscompiles
the division routines. Also, on OSF/1 or Tru64 using gcc-2.95.x, you should
specify --disable-shared because of linker problems with duplicate symbols
in shared libraries.
the division routines. If you use g++ older than 2.95.3 on Sparc you should
also specify --disable-shared because of bad code produced in the shared
library. Also, on OSF/1 or Tru64 using gcc-2.95.x, you should specify
--disable-shared because of linker problems with duplicate symbols in shared
libraries.
More detailed installation instructions can be found in the documentation,
in the doc/ directory.

2
NEWS

@ -1,4 +1,4 @@
2001-05-26, version 1.1.1
2001-05-31, version 1.1.1
=========================
Implementation changes

6
configure.in

@ -78,9 +78,9 @@ dnl * if any functions/classes have been added, removed or changed, increment
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=1
CL_REVISION=1
CL_AGE=1
CL_CURRENT=2
CL_REVISION=0
CL_AGE=0
dnl make substitutions
AC_SUBST(CL_CURRENT)
AC_SUBST(CL_REVISION)

Loading…
Cancel
Save