svn commit: r368387 - in head/contrib/bc: . gen include manuals src tests tests/bc

Stefan Eßer se at FreeBSD.org
Sun Dec 6 11:49:23 UTC 2020


Author: se
Date: Sun Dec  6 11:49:21 2020
New Revision: 368387
URL: https://svnweb.freebsd.org/changeset/base/368387

Log:
  Upgrade to version 3.2.3

Modified:
  head/contrib/bc/Makefile.in
  head/contrib/bc/NEWS.md
  head/contrib/bc/configure.sh
  head/contrib/bc/gen/strgen.sh
Directory Properties:
  head/contrib/bc/   (props changed)
  head/contrib/bc/include/bcl.h   (props changed)
  head/contrib/bc/include/library.h   (props changed)
  head/contrib/bc/manuals/bcl.3   (props changed)
  head/contrib/bc/manuals/header.txt   (props changed)
  head/contrib/bc/manuals/header_bc.txt   (props changed)
  head/contrib/bc/manuals/header_bcl.txt   (props changed)
  head/contrib/bc/manuals/header_dc.txt   (props changed)
  head/contrib/bc/src/library.c   (props changed)
  head/contrib/bc/tests/bc/stdin1.txt   (props changed)
  head/contrib/bc/tests/bc/stdin1_results.txt   (props changed)
  head/contrib/bc/tests/bc/stdin2.txt   (props changed)
  head/contrib/bc/tests/bc/stdin2_results.txt   (props changed)
  head/contrib/bc/tests/bcl.c   (props changed)

Modified: head/contrib/bc/Makefile.in
==============================================================================
--- head/contrib/bc/Makefile.in	Sun Dec  6 11:43:30 2020	(r368386)
+++ head/contrib/bc/Makefile.in	Sun Dec  6 11:49:21 2020	(r368387)
@@ -29,7 +29,7 @@
 #
 .POSIX:
 
-VERSION = 3.2.0
+VERSION = 3.2.3
 
 SRC = %%SRC%%
 OBJ = %%OBJ%%

Modified: head/contrib/bc/NEWS.md
==============================================================================
--- head/contrib/bc/NEWS.md	Sun Dec  6 11:43:30 2020	(r368386)
+++ head/contrib/bc/NEWS.md	Sun Dec  6 11:49:21 2020	(r368387)
@@ -1,5 +1,24 @@
 # News
 
+## 3.2.3
+
+This is a production release that fixes a bug in `gen/strgen.sh`. I recently
+changed `gen/strgen.c`, but I did not change `gen/strgen.sh`.
+
+Users that do not use `gen/strgen.sh` do not need to upgrade.
+
+## 3.2.2
+
+This is a production release that fixes a portability bug in `configure.sh`. The
+bug was using the GNU `find` extension `-wholename`.
+
+## 3.2.1
+
+This is a production release that has one fix for `bcl(3)`. It is technically
+not a bug fix since the behavior is undefined, but the `BclNumber`s that
+`bcl_divmod()` returns will be set to `BCL_ERROR_INVALID_NUM` if there is an
+error. Previously, they were not set.
+
 ## 3.2.0
 
 This is a production release that has one bug fix and a major addition.

Modified: head/contrib/bc/configure.sh
==============================================================================
--- head/contrib/bc/configure.sh	Sun Dec  6 11:43:30 2020	(r368386)
+++ head/contrib/bc/configure.sh	Sun Dec  6 11:49:21 2020	(r368387)
@@ -295,7 +295,7 @@ gen_file_list() {
 		while [ "$#" -ge 1 ]; do
 			a="$1"
 			shift
-			args="$args ! -wholename src/${a}"
+			args="$args ! -path src/${a}"
 		done
 
 	else

Modified: head/contrib/bc/gen/strgen.sh
==============================================================================
--- head/contrib/bc/gen/strgen.sh	Sun Dec  6 11:43:30 2020	(r368386)
+++ head/contrib/bc/gen/strgen.sh	Sun Dec  6 11:49:21 2020	(r368387)
@@ -33,7 +33,7 @@ export LC_CTYPE=C
 progname=${0##*/}
 
 if [ $# -lt 3 ]; then
-	echo "usage: $progname input output name header [label [define [remove_tabs]]]"
+	echo "usage: $progname input output name [label [define [remove_tabs]]]"
 	exit 1
 fi
 


More information about the svn-src-head mailing list