Release calc version 2.11.0t7.3

This commit is contained in:
Landon Curt Noll
1999-10-16 04:36:53 -07:00
parent 9204d2fb8c
commit 45a4b8469d
10 changed files with 308 additions and 156 deletions

15
CHANGES
View File

@@ -118,6 +118,21 @@ Following is the change from calc version 2.11.0t7 to date:
Converted start_done into a general calc run state enum called
run_state within the calc source.
Removed README.OLD.
Added the Makefile variable ${LCC} to invoke the local c compiler.
By default, ${CC} also run the ${LCC} compiler. The distinction is
useful when using something such as purify. In the case of ${LCC},
only the local C compiler is invoked. In the case of ${CC} a purify
compile is invoked. Only the source that must be compiled and run
on the local machine use ${LCC}; everything else uses ${CC}.
Fixed memory buffer ovreread problem in eatstring() in token.c.
Fixed memory leaks related to putenv().
Fixed memory leaks realted to srandom().
Misc calc man page fixes.