mirror of
https://github.com/lcn2/calc.git
synced 2025-08-19 01:13:27 +03:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
0aca07d278 | ||
|
1ab3b2c313 |
26
CHANGES
26
CHANGES
@@ -1,4 +1,19 @@
|
||||
The following are the changes from calc version 2.12.8.0 to date:
|
||||
The following are the changes from calc version 2.12.8.1 to date:
|
||||
|
||||
Fixed how the *.tar.bz2 are formed. The calc-2.12.8.0.tar.bz2 file
|
||||
that was formed for calc version 2.12.8.0 was missing most files.
|
||||
|
||||
Expanded 'make chk' to also verify that 'make distchk' and 'make
|
||||
distlist' execute successfully. This will help check a regression
|
||||
of the bug that produced the bogus calc-2.12.8.0.tar.bz2 file.
|
||||
|
||||
Added additional regression tests related 0^(zero_expression)==1.
|
||||
|
||||
Calc can now correctly compile without CUSTOM being defined,
|
||||
thanks to a report by <GitHub user barsnick>.
|
||||
|
||||
|
||||
The following are the changes from calc version 2.12.7.5 to 2.12.8.0:
|
||||
|
||||
Fixed a mistake in "help intro" where some inserted text changed
|
||||
the value of "." and thus made the next result incorrect.
|
||||
@@ -54,15 +69,6 @@ The following are the changes from calc version 2.12.8.0 to date:
|
||||
|
||||
http://www.isthe.com/chongo/tech/comp/calc/calc-question.html
|
||||
|
||||
Fixed how the *.tar.bz2 are formed. The calc-2.12.8.0.tar.bz2 file
|
||||
that was formed for calc version 2.12.8.0 was missing most files.
|
||||
|
||||
Expanded 'make chk' to also verify that 'make distchk' and 'make
|
||||
distlist' execute successfully. This will help check a regression
|
||||
of the bug that produced the bogus calc-2.12.8.0.tar.bz2 file.
|
||||
|
||||
Added additional regression tests related 0^(zero_expression)==1.
|
||||
|
||||
|
||||
The following are the changes from calc version 2.12.7.1 to 2.12.7.5:
|
||||
|
||||
|
@@ -1053,7 +1053,7 @@ EXT=
|
||||
|
||||
# The default calc versions
|
||||
#
|
||||
VERSION= 2.12.8.1
|
||||
VERSION= 2.12.8.2
|
||||
|
||||
# Names of shared libraries with versions
|
||||
#
|
||||
|
@@ -348,7 +348,7 @@ EXT=
|
||||
|
||||
# The default calc versions
|
||||
#
|
||||
VERSION= 2.12.8.1
|
||||
VERSION= 2.12.8.2
|
||||
|
||||
# Names of shared libraries with versions
|
||||
#
|
||||
|
@@ -348,7 +348,7 @@ EXT=
|
||||
|
||||
# The default calc versions
|
||||
#
|
||||
VERSION= 2.12.8.1
|
||||
VERSION= 2.12.8.2
|
||||
|
||||
# Names of shared libraries with versions
|
||||
#
|
||||
|
@@ -565,6 +565,7 @@ initenv(void)
|
||||
calc_helpdir = HELPDIR;
|
||||
}
|
||||
|
||||
#if defined(CUSTOM)
|
||||
/* determine the $CALCCUSTOMHELP value */
|
||||
c = (no_env ? NULL : getenv(CALCCUSTOMHELP));
|
||||
calc_customhelpdir = (c ? strdup(c) : NULL);
|
||||
@@ -572,6 +573,7 @@ initenv(void)
|
||||
/* will use /usr/local/share/calc/custhelp */
|
||||
calc_customhelpdir = CUSTOMHELPDIR;
|
||||
}
|
||||
#endif /* CUSTOM */
|
||||
}
|
||||
|
||||
|
||||
|
@@ -45,7 +45,7 @@ static char *program;
|
||||
#define MAJOR_VER 2 /* major library version */
|
||||
#define MINOR_VER 12 /* minor library version */
|
||||
#define MAJOR_PATCH 8 /* major software version level */
|
||||
#define MINOR_PATCH 1 /* minor software version level */
|
||||
#define MINOR_PATCH 2 /* minor software version level */
|
||||
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user