Skip to content

Commit e268691

Browse files
committed
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`.
1 parent 544b873 commit e268691

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1394,7 +1394,7 @@ EXT=
13941394

13951395
# The default calc versions
13961396
#
1397-
VERSION= 2.14.2.2
1397+
VERSION= 2.14.3.0
13981398

13991399
# Names of shared libraries with versions
14001400
#

Makefile.simple

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@ EXT=
12391239

12401240
# The default calc versions
12411241
#
1242-
VERSION= 2.14.2.2
1242+
VERSION= 2.14.3.0
12431243

12441244
# Names of shared libraries with versions
12451245
#

custom/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ EXT=
475475

476476
# The default calc versions
477477
#
478-
VERSION= 2.14.2.2
478+
VERSION= 2.14.3.0
479479

480480
# Names of shared libraries with versions
481481
#

custom/Makefile.simple

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ EXT=
445445

446446
# The default calc versions
447447
#
448-
VERSION= 2.14.2.2
448+
VERSION= 2.14.3.0
449449

450450
# Names of shared libraries with versions
451451
#

version.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ static char *program;
8383
*/
8484
#define MAJOR_VER 2 /* major library version */
8585
#define MINOR_VER 14 /* minor library version */
86-
#define MAJOR_PATCH 2 /* major software version level */
87-
#define MINOR_PATCH 2 /* minor software version level */
86+
#define MAJOR_PATCH 3 /* major software version level */
87+
#define MINOR_PATCH 0 /* minor software version level */
8888

8989

9090
/*

0 commit comments

Comments
 (0)