Browse Source

* Adjusted dates and final touches for 1.1.1.

master
Richard Kreckel 24 years ago
parent
commit
36a5e547df
  1. 4
      COPYING
  2. 8
      ChangeLog
  3. 4
      INSTALL
  4. 6
      NEWS
  5. 11
      doc/cln.tex
  6. 1
      src/base/cl_free.cc

4
COPYING

@ -292,7 +292,7 @@ convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.> <one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
Copyright (C) <year> <name of author>
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -313,7 +313,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this If the program is interactive, make it output a short notice like this
when it starts in an interactive mode: when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) 19yy name of author
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.

8
ChangeLog

@ -1,3 +1,11 @@
2001-05-25 Richard Kreckel <kreckel@ginac.de>
* autoconf/floatparam.c (double_wordorder_bigendian_p): new symbol.
* src/float/dfloat/cl_DF.h: Check for double_wordorder_bigendian_p.
* Removed LiDIA interface since that is now outdated (namespace cln)
and maintained elsewhere.
* Adjusted dates and final touches for 1.1.1.
2001-05-19 Richard Kreckel <kreckel@ginac.de> 2001-05-19 Richard Kreckel <kreckel@ginac.de>
* INSTALL: Update toolchain info: no egcs, some more platforms. * INSTALL: Update toolchain info: no egcs, some more platforms.

4
INSTALL

@ -19,8 +19,8 @@ Known to work with:
- Linux/powerpc, gcc-2.95.x - Linux/powerpc, gcc-2.95.x
- Solaris 2.4 (sparc), gcc-2.95 - Solaris 2.4 (sparc), gcc-2.95
- OSF/1 V4.0 (alpha), gcc-2.95 - OSF/1 V4.0 (alpha), gcc-2.95
- Irix 6.5, gcc-2.95
- BeOS, gcc-2.95
- Irix 6.5, gcc-2.95.x
- BeOS, gcc-2.95.x
The "make" step takes about 1 hour, on a P-II / 400 MHz / 64 MB. The "make" step takes about 1 hour, on a P-II / 400 MHz / 64 MB.

6
NEWS

@ -1,10 +1,12 @@
2001-xx-xx, version 1.1.1
2001-05-26, version 1.1.1
========================= =========================
Implementation changes Implementation changes
---------------------- ----------------------
* Minor cleanup for GCC 3.0.
* Minor cleanups for GCC 3.0 and libstdc++-v3.
* Fixes several little bugs and portability issues.
2000-12-14, version 1.1.0 2000-12-14, version 1.1.0

11
doc/cln.tex

@ -34,7 +34,8 @@ This file documents @sc{cln}, a Class Library for Numbers.
Published by Bruno Haible, @code{<haible@@clisp.cons.org>} and Published by Bruno Haible, @code{<haible@@clisp.cons.org>} and
Richard Kreckel, @code{<kreckel@@ginac.de>}. Richard Kreckel, @code{<kreckel@@ginac.de>}.
Copyright (C) Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000.
Copyright (C) Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000, 2001.
Copyright (C) Richard Kreckel 2000, 2001.
Permission is granted to make and distribute verbatim copies of Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice this manual provided the copyright notice and this permission notice
@ -68,7 +69,9 @@ by the author.
@author by Bruno Haible @author by Bruno Haible
@page @page
@vskip 0pt plus 1filll @vskip 0pt plus 1filll
Copyright @copyright{} Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000.
Copyright @copyright{} Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000, 2001.
@sp 0
Copyright @copyright{} Richard Kreckel 2000, 2001.
@sp 2 @sp 2
Published by Bruno Haible, @code{<haible@@clisp.cons.org>} and Published by Bruno Haible, @code{<haible@@clisp.cons.org>} and
@ -239,9 +242,7 @@ This section describes how to install the CLN package on your system.
@subsection C++ compiler @subsection C++ compiler
To build CLN, you need a C++ compiler. To build CLN, you need a C++ compiler.
Actually, you need GNU @code{g++ 2.90} or newer, the EGCS compilers will
do.
I recommend GNU @code{g++ 2.95} or newer.
Actually, you need GNU @code{g++ 2.95} or newer.
The following C++ features are used: The following C++ features are used:
classes, member functions, overloading of functions and operators, classes, member functions, overloading of functions and operators,

1
src/base/cl_free.cc

@ -34,6 +34,7 @@ void cl_free_heap_object (cl_heap* pointer)
static const char * copyright_notice[] = { static const char * copyright_notice[] = {
" \n" " \n"
"Copyright (c) Bruno Haible 1988-2001 \n" "Copyright (c) Bruno Haible 1988-2001 \n"
"Copyright (c) Richard Kreckel 2000-2001 \n"
" \n" " \n"
"This program is free software; you can redistribute it and/or modify\n" "This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n" "it under the terms of the GNU General Public License as published by\n"

Loading…
Cancel
Save