From e2686911ae7455be850144a52a0cffd2e06c169f Mon Sep 17 00:00:00 2001 From: Landon Curt Noll Date: Wed, 2 Aug 2023 16:09:00 -0700 Subject: [PATCH] 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`. --- Makefile | 2 +- Makefile.simple | 2 +- custom/Makefile | 2 +- custom/Makefile.simple | 2 +- version.c | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 6ed317a..e34f22f 100644 --- a/Makefile +++ b/Makefile @@ -1394,7 +1394,7 @@ EXT= # The default calc versions # -VERSION= 2.14.2.2 +VERSION= 2.14.3.0 # Names of shared libraries with versions # diff --git a/Makefile.simple b/Makefile.simple index 137f92e..b27e841 100644 --- a/Makefile.simple +++ b/Makefile.simple @@ -1239,7 +1239,7 @@ EXT= # The default calc versions # -VERSION= 2.14.2.2 +VERSION= 2.14.3.0 # Names of shared libraries with versions # diff --git a/custom/Makefile b/custom/Makefile index 02cda3a..a92d563 100644 --- a/custom/Makefile +++ b/custom/Makefile @@ -475,7 +475,7 @@ EXT= # The default calc versions # -VERSION= 2.14.2.2 +VERSION= 2.14.3.0 # Names of shared libraries with versions # diff --git a/custom/Makefile.simple b/custom/Makefile.simple index fa6f690..0c61ac5 100644 --- a/custom/Makefile.simple +++ b/custom/Makefile.simple @@ -445,7 +445,7 @@ EXT= # The default calc versions # -VERSION= 2.14.2.2 +VERSION= 2.14.3.0 # Names of shared libraries with versions # diff --git a/version.c b/version.c index 4b60936..eb1561b 100644 --- a/version.c +++ b/version.c @@ -83,8 +83,8 @@ static char *program; */ #define MAJOR_VER 2 /* major library version */ #define MINOR_VER 14 /* minor library version */ -#define MAJOR_PATCH 2 /* major software version level */ -#define MINOR_PATCH 2 /* minor software version level */ +#define MAJOR_PATCH 3 /* major software version level */ +#define MINOR_PATCH 0 /* minor software version level */ /*