mirror of
https://github.com/lcn2/calc.git
synced 2025-08-19 01:13:27 +03:00
Release v2.14.3.0
The following are the changes in this release: Updated COPYING to include the actual text of "The Unlicense". Made minor formatting changes to the file. The Darwin specific ${DARWIN_ARCH}, thay by default was unset, is now the ${ARCH_CFLAGS} Makefile variable. Comments about various "-arch name" have been moved to the ${ARCH_CFLAGS} area. For old Apple Power PC systems, the following is added: COMMON_CFLAGS+= -std=gnu99 COMMON_LDFLAGS+= -std=gnu99 ARCH_CFLAGS+= -arch ppc Old Apple Power PC systems should be detected by the "uname -p" command returning "powerpc". One may force the Power PC mode by adding to the end of any make command: make ...make_args... target=Darwin arch=powerpc or by adding the following in the Makefile.local file: target= Darwin arch= powerpc Improved the output of the calcinfo rule by adding echos of various uname values as well as some top Makefile variables. Fixed the BUGS file with respect to using `make debug`. Added a final ls of `debug.out` for `make debug`.
This commit is contained in:
2
Makefile
2
Makefile
@@ -1394,7 +1394,7 @@ EXT=
|
|||||||
|
|
||||||
# The default calc versions
|
# The default calc versions
|
||||||
#
|
#
|
||||||
VERSION= 2.14.2.2
|
VERSION= 2.14.3.0
|
||||||
|
|
||||||
# Names of shared libraries with versions
|
# Names of shared libraries with versions
|
||||||
#
|
#
|
||||||
|
@@ -1239,7 +1239,7 @@ EXT=
|
|||||||
|
|
||||||
# The default calc versions
|
# The default calc versions
|
||||||
#
|
#
|
||||||
VERSION= 2.14.2.2
|
VERSION= 2.14.3.0
|
||||||
|
|
||||||
# Names of shared libraries with versions
|
# Names of shared libraries with versions
|
||||||
#
|
#
|
||||||
|
@@ -475,7 +475,7 @@ EXT=
|
|||||||
|
|
||||||
# The default calc versions
|
# The default calc versions
|
||||||
#
|
#
|
||||||
VERSION= 2.14.2.2
|
VERSION= 2.14.3.0
|
||||||
|
|
||||||
# Names of shared libraries with versions
|
# Names of shared libraries with versions
|
||||||
#
|
#
|
||||||
|
@@ -445,7 +445,7 @@ EXT=
|
|||||||
|
|
||||||
# The default calc versions
|
# The default calc versions
|
||||||
#
|
#
|
||||||
VERSION= 2.14.2.2
|
VERSION= 2.14.3.0
|
||||||
|
|
||||||
# Names of shared libraries with versions
|
# Names of shared libraries with versions
|
||||||
#
|
#
|
||||||
|
@@ -83,8 +83,8 @@ static char *program;
|
|||||||
*/
|
*/
|
||||||
#define MAJOR_VER 2 /* major library version */
|
#define MAJOR_VER 2 /* major library version */
|
||||||
#define MINOR_VER 14 /* minor library version */
|
#define MINOR_VER 14 /* minor library version */
|
||||||
#define MAJOR_PATCH 2 /* major software version level */
|
#define MAJOR_PATCH 3 /* major software version level */
|
||||||
#define MINOR_PATCH 2 /* minor software version level */
|
#define MINOR_PATCH 0 /* minor software version level */
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user