History log of /freebsd-current/contrib/bc/src/history.c
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 103d7cdf 24-Feb-2023 Stefan Eßer <se@FreeBSD.org>

vendor/bc: import version 6.3.1

This version adds a command to dc to query whether extended registers
are enabled or not.

(cherry picked from commit 61e1a12bb6c3bfdb0a4e499c88e8eaa2b548e427)


# d101cdd6 28-Jan-2023 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge from vendor release 6.2.2

This update fixes a few issues in history editing and the processing
of the "quit" function. The "quit" function will no longer cause bc
to exit when encountered in a script file (before any command from
the script has been executed).

New functions is_number(), is_string return 1 if the passed argument
is a number resp. a string. The asciify() function has been extended
to support the conversion of an array of numbers into a string.

Merge commit '1a63323d17fedb05b6962853e821c9d7c6b9853e'


# f53b5fe7 15-Jun-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge from vendor release 5.3.3

This update fixes a build issue of release 5.3.2 on the FreeBSD base
system.

Merge commit '3f739b0595b7d6ac4bac9aaa1cae0910f11f92e2'

MFC after: 2 weeks


# 78bc019d 11-Jun-2022 Stefan Eßer <se@FreeBSD.org>

usr.bin/bc: update to version 5.3.1

This version adds support for command line editing and history using
the libedit or readline libraries in addition to the line editing
features available in previous versions.

The version in the base system is configured to use libedit.

This allows to choose between emacs and vi line editing commands and
to use command overrides via a ~/.editrc file.

Merge commit 'bd54318046bfee055b140705a5cfd4148e78da07'

PR: 264010

MFC after: 2 weeks


# bbd60e2c 10-May-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: update to version 5.2.5

This is a production release that fixes this bc's behavior on ^D to
match GNU bc.

Merge commit 'ed0603704174b01c25b49efc08c82e1532dc5622'

MFC after: 3 days


# aaa77b3a 10-May-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: revert commit f4ff1c300ef40

This commit was executed by accident while testing the new version.

# f4ff1c30 10-May-2022 Stefan Eßer <se@FreeBSD.org>

vendor/bc: import of version 5.2.5

This is a production release that fixes this bc's behavior on ^D to
match GNU bc.

(cherry picked from commit ed0603704174b01c25b49efc08c82e1532dc5622)

# b85b9c88 17-Apr-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: import version 5.2.4

This update fixes an issue in input line editing: when going left to
the start of the line, the cursor would jump to the end of the line
instead.

Merge commit 'bc75dcc4ce682562390fa32e7cd63c08160e21b9'


# 10041e99 30-Nov-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.2.1 from vendor branch

Merge commit 'e63540eed295749528548c2e3a90f5a6e57275c8'


# d43fa8ef 04-Oct-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.1.0 from vendor branch

This version adds options and functions that allow to print numbers
in the open interval (-1 .. 1) with or without a leading 0 digit.

Additionally, an option has been added to prevent line wrap and
allows to print arbitrarily long results on a single line.

Merge commit '5d58a51571721190681c50d4bd3a1f45e6282d72'


# 44d4804d 10-Aug-2021 Stefan Eßer <se@FreeBSD.org>

usr.bin/ghä-bc, contrib/bc: update to version 5.0.0

Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4

This is a new major release with a number of changes and extensions:

- Limited the number of temporary numbers and made the space for them
static so that allocating more space for them cannot fail.
- Allowed integers with non-zero scale to be used with power, places,
and shift operators.
- Added greatest common divisor and least common multiple to lib2.bc.
- Made bc and dc UTF-8 capable.
- Added the ability for users to have bc and dc quit on SIGINT.
- Added the ability for users to disable prompt and TTY mode by
environment variables.
- Added the ability for users to redefine keywords.
- Added dc's modular exponentiation and divmod to bc.
- Added the ability to assign strings to variables and array elements
and pass them to functions in bc.
- Added dc's asciify command and stream printing to bc.
- Added bitwise and, or, xor, left shift, right shift, reverse,
left rotate, right rotate, and mod functions to lib2.bc.
- Added the functions s2u(x) and s2un(x,n), to lib2.bc.

MFC after: 1 week

# 8c39e252 11-May-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: update to version 4.0.2

Merge commit '2858419a0ee2b8f5827de72c00618bcd69ebc5fc'

This update fixes the initialization of "scale" to 20 if started with
-l and the initial statement leads to an error (e.g. contains a syntax
error). Scale was initialized to 0 in that case.

Another change is the support of job control in interactive mode with
line editing enabled. The control characters have been interpreted as
editing commands only, prior to this version.

MFC after: 3 days


# e681dd3e 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Revert "Vendor import of Gavin D. Howard's bc version 4.0.2"

The update had been performed on a check-out of the vendor branch,
but the final push lacked the target designation vendor/bc.

# e5092308 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Vendor import of Gavin D. Howard's bc version 4.0.2

# 7e5c51e5 06-Apr-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '7a590c074ceede12b2b6e794f8703d6fa5749918'

Update to version 4.0.0

This version fixes an issue (missing pop of top-of-stack value in the
"P" command of the dc program).

This issue did not affect the bc program, since it does not use dc as
an back-end to actually perform the calculations as was the case with
the traditional bc and dc programs.

The major number has been bumped due to Windows support that has been
added to this version. It does not correspond to a major change that
might affect FreeBSD.


# 10328f8b 31-Jan-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '47a52dc4d48f259ab7d9f9ba6b65f4f2331a22dc'

Update to version 3.2.6

MFC after: 3 days


# 50696a6e 26-Nov-2020 Stefan Eßer <se@FreeBSD.org>

Update to version 3.2.0


# f53b5fe7 15-Jun-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge from vendor release 5.3.3

This update fixes a build issue of release 5.3.2 on the FreeBSD base
system.

Merge commit '3f739b0595b7d6ac4bac9aaa1cae0910f11f92e2'

MFC after: 2 weeks


# 78bc019d 11-Jun-2022 Stefan Eßer <se@FreeBSD.org>

usr.bin/bc: update to version 5.3.1

This version adds support for command line editing and history using
the libedit or readline libraries in addition to the line editing
features available in previous versions.

The version in the base system is configured to use libedit.

This allows to choose between emacs and vi line editing commands and
to use command overrides via a ~/.editrc file.

Merge commit 'bd54318046bfee055b140705a5cfd4148e78da07'

PR: 264010

MFC after: 2 weeks


# bbd60e2c 10-May-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: update to version 5.2.5

This is a production release that fixes this bc's behavior on ^D to
match GNU bc.

Merge commit 'ed0603704174b01c25b49efc08c82e1532dc5622'

MFC after: 3 days


# aaa77b3a 10-May-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: revert commit f4ff1c300ef40

This commit was executed by accident while testing the new version.

# f4ff1c30 10-May-2022 Stefan Eßer <se@FreeBSD.org>

vendor/bc: import of version 5.2.5

This is a production release that fixes this bc's behavior on ^D to
match GNU bc.

(cherry picked from commit ed0603704174b01c25b49efc08c82e1532dc5622)

# b85b9c88 17-Apr-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: import version 5.2.4

This update fixes an issue in input line editing: when going left to
the start of the line, the cursor would jump to the end of the line
instead.

Merge commit 'bc75dcc4ce682562390fa32e7cd63c08160e21b9'


# 10041e99 30-Nov-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.2.1 from vendor branch

Merge commit 'e63540eed295749528548c2e3a90f5a6e57275c8'


# d43fa8ef 04-Oct-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.1.0 from vendor branch

This version adds options and functions that allow to print numbers
in the open interval (-1 .. 1) with or without a leading 0 digit.

Additionally, an option has been added to prevent line wrap and
allows to print arbitrarily long results on a single line.

Merge commit '5d58a51571721190681c50d4bd3a1f45e6282d72'


# 44d4804d 10-Aug-2021 Stefan Eßer <se@FreeBSD.org>

usr.bin/ghä-bc, contrib/bc: update to version 5.0.0

Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4

This is a new major release with a number of changes and extensions:

- Limited the number of temporary numbers and made the space for them
static so that allocating more space for them cannot fail.
- Allowed integers with non-zero scale to be used with power, places,
and shift operators.
- Added greatest common divisor and least common multiple to lib2.bc.
- Made bc and dc UTF-8 capable.
- Added the ability for users to have bc and dc quit on SIGINT.
- Added the ability for users to disable prompt and TTY mode by
environment variables.
- Added the ability for users to redefine keywords.
- Added dc's modular exponentiation and divmod to bc.
- Added the ability to assign strings to variables and array elements
and pass them to functions in bc.
- Added dc's asciify command and stream printing to bc.
- Added bitwise and, or, xor, left shift, right shift, reverse,
left rotate, right rotate, and mod functions to lib2.bc.
- Added the functions s2u(x) and s2un(x,n), to lib2.bc.

MFC after: 1 week

# 8c39e252 11-May-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: update to version 4.0.2

Merge commit '2858419a0ee2b8f5827de72c00618bcd69ebc5fc'

This update fixes the initialization of "scale" to 20 if started with
-l and the initial statement leads to an error (e.g. contains a syntax
error). Scale was initialized to 0 in that case.

Another change is the support of job control in interactive mode with
line editing enabled. The control characters have been interpreted as
editing commands only, prior to this version.

MFC after: 3 days


# e681dd3e 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Revert "Vendor import of Gavin D. Howard's bc version 4.0.2"

The update had been performed on a check-out of the vendor branch,
but the final push lacked the target designation vendor/bc.

# e5092308 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Vendor import of Gavin D. Howard's bc version 4.0.2

# 7e5c51e5 06-Apr-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '7a590c074ceede12b2b6e794f8703d6fa5749918'

Update to version 4.0.0

This version fixes an issue (missing pop of top-of-stack value in the
"P" command of the dc program).

This issue did not affect the bc program, since it does not use dc as
an back-end to actually perform the calculations as was the case with
the traditional bc and dc programs.

The major number has been bumped due to Windows support that has been
added to this version. It does not correspond to a major change that
might affect FreeBSD.


# 10328f8b 31-Jan-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '47a52dc4d48f259ab7d9f9ba6b65f4f2331a22dc'

Update to version 3.2.6

MFC after: 3 days


# 50696a6e 26-Nov-2020 Stefan Eßer <se@FreeBSD.org>

Update to version 3.2.0


# 78bc019d 11-Jun-2022 Stefan Eßer <se@FreeBSD.org>

usr.bin/bc: update to version 5.3.1

This version adds support for command line editing and history using
the libedit or readline libraries in addition to the line editing
features available in previous versions.

The version in the base system is configured to use libedit.

This allows to choose between emacs and vi line editing commands and
to use command overrides via a ~/.editrc file.

Merge commit 'bd54318046bfee055b140705a5cfd4148e78da07'

PR: 264010

MFC after: 2 weeks


# bbd60e2c 10-May-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: update to version 5.2.5

This is a production release that fixes this bc's behavior on ^D to
match GNU bc.

Merge commit 'ed0603704174b01c25b49efc08c82e1532dc5622'

MFC after: 3 days


# aaa77b3a 10-May-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: revert commit f4ff1c300ef40

This commit was executed by accident while testing the new version.

# f4ff1c30 10-May-2022 Stefan Eßer <se@FreeBSD.org>

vendor/bc: import of version 5.2.5

This is a production release that fixes this bc's behavior on ^D to
match GNU bc.

(cherry picked from commit ed0603704174b01c25b49efc08c82e1532dc5622)

# b85b9c88 17-Apr-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: import version 5.2.4

This update fixes an issue in input line editing: when going left to
the start of the line, the cursor would jump to the end of the line
instead.

Merge commit 'bc75dcc4ce682562390fa32e7cd63c08160e21b9'


# 10041e99 30-Nov-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.2.1 from vendor branch

Merge commit 'e63540eed295749528548c2e3a90f5a6e57275c8'


# d43fa8ef 04-Oct-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.1.0 from vendor branch

This version adds options and functions that allow to print numbers
in the open interval (-1 .. 1) with or without a leading 0 digit.

Additionally, an option has been added to prevent line wrap and
allows to print arbitrarily long results on a single line.

Merge commit '5d58a51571721190681c50d4bd3a1f45e6282d72'


# 44d4804d 10-Aug-2021 Stefan Eßer <se@FreeBSD.org>

usr.bin/ghä-bc, contrib/bc: update to version 5.0.0

Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4

This is a new major release with a number of changes and extensions:

- Limited the number of temporary numbers and made the space for them
static so that allocating more space for them cannot fail.
- Allowed integers with non-zero scale to be used with power, places,
and shift operators.
- Added greatest common divisor and least common multiple to lib2.bc.
- Made bc and dc UTF-8 capable.
- Added the ability for users to have bc and dc quit on SIGINT.
- Added the ability for users to disable prompt and TTY mode by
environment variables.
- Added the ability for users to redefine keywords.
- Added dc's modular exponentiation and divmod to bc.
- Added the ability to assign strings to variables and array elements
and pass them to functions in bc.
- Added dc's asciify command and stream printing to bc.
- Added bitwise and, or, xor, left shift, right shift, reverse,
left rotate, right rotate, and mod functions to lib2.bc.
- Added the functions s2u(x) and s2un(x,n), to lib2.bc.

MFC after: 1 week

# 8c39e252 11-May-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: update to version 4.0.2

Merge commit '2858419a0ee2b8f5827de72c00618bcd69ebc5fc'

This update fixes the initialization of "scale" to 20 if started with
-l and the initial statement leads to an error (e.g. contains a syntax
error). Scale was initialized to 0 in that case.

Another change is the support of job control in interactive mode with
line editing enabled. The control characters have been interpreted as
editing commands only, prior to this version.

MFC after: 3 days


# e681dd3e 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Revert "Vendor import of Gavin D. Howard's bc version 4.0.2"

The update had been performed on a check-out of the vendor branch,
but the final push lacked the target designation vendor/bc.

# e5092308 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Vendor import of Gavin D. Howard's bc version 4.0.2

# 7e5c51e5 06-Apr-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '7a590c074ceede12b2b6e794f8703d6fa5749918'

Update to version 4.0.0

This version fixes an issue (missing pop of top-of-stack value in the
"P" command of the dc program).

This issue did not affect the bc program, since it does not use dc as
an back-end to actually perform the calculations as was the case with
the traditional bc and dc programs.

The major number has been bumped due to Windows support that has been
added to this version. It does not correspond to a major change that
might affect FreeBSD.


# 10328f8b 31-Jan-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '47a52dc4d48f259ab7d9f9ba6b65f4f2331a22dc'

Update to version 3.2.6

MFC after: 3 days


# 50696a6e 26-Nov-2020 Stefan Eßer <se@FreeBSD.org>

Update to version 3.2.0


# aaa77b3a 10-May-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: revert commit f4ff1c300ef40

This commit was executed by accident while testing the new version.


# f4ff1c30 10-May-2022 Stefan Eßer <se@FreeBSD.org>

vendor/bc: import of version 5.2.5

This is a production release that fixes this bc's behavior on ^D to
match GNU bc.

(cherry picked from commit ed0603704174b01c25b49efc08c82e1532dc5622)


# b85b9c88 17-Apr-2022 Stefan Eßer <se@FreeBSD.org>

contrib/bc: import version 5.2.4

This update fixes an issue in input line editing: when going left to
the start of the line, the cursor would jump to the end of the line
instead.

Merge commit 'bc75dcc4ce682562390fa32e7cd63c08160e21b9'


# 10041e99 30-Nov-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.2.1 from vendor branch

Merge commit 'e63540eed295749528548c2e3a90f5a6e57275c8'


# d43fa8ef 04-Oct-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.1.0 from vendor branch

This version adds options and functions that allow to print numbers
in the open interval (-1 .. 1) with or without a leading 0 digit.

Additionally, an option has been added to prevent line wrap and
allows to print arbitrarily long results on a single line.

Merge commit '5d58a51571721190681c50d4bd3a1f45e6282d72'


# 44d4804d 10-Aug-2021 Stefan Eßer <se@FreeBSD.org>

usr.bin/ghä-bc, contrib/bc: update to version 5.0.0

Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4

This is a new major release with a number of changes and extensions:

- Limited the number of temporary numbers and made the space for them
static so that allocating more space for them cannot fail.
- Allowed integers with non-zero scale to be used with power, places,
and shift operators.
- Added greatest common divisor and least common multiple to lib2.bc.
- Made bc and dc UTF-8 capable.
- Added the ability for users to have bc and dc quit on SIGINT.
- Added the ability for users to disable prompt and TTY mode by
environment variables.
- Added the ability for users to redefine keywords.
- Added dc's modular exponentiation and divmod to bc.
- Added the ability to assign strings to variables and array elements
and pass them to functions in bc.
- Added dc's asciify command and stream printing to bc.
- Added bitwise and, or, xor, left shift, right shift, reverse,
left rotate, right rotate, and mod functions to lib2.bc.
- Added the functions s2u(x) and s2un(x,n), to lib2.bc.

MFC after: 1 week

# 8c39e252 11-May-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: update to version 4.0.2

Merge commit '2858419a0ee2b8f5827de72c00618bcd69ebc5fc'

This update fixes the initialization of "scale" to 20 if started with
-l and the initial statement leads to an error (e.g. contains a syntax
error). Scale was initialized to 0 in that case.

Another change is the support of job control in interactive mode with
line editing enabled. The control characters have been interpreted as
editing commands only, prior to this version.

MFC after: 3 days


# e681dd3e 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Revert "Vendor import of Gavin D. Howard's bc version 4.0.2"

The update had been performed on a check-out of the vendor branch,
but the final push lacked the target designation vendor/bc.

# e5092308 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Vendor import of Gavin D. Howard's bc version 4.0.2

# 7e5c51e5 06-Apr-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '7a590c074ceede12b2b6e794f8703d6fa5749918'

Update to version 4.0.0

This version fixes an issue (missing pop of top-of-stack value in the
"P" command of the dc program).

This issue did not affect the bc program, since it does not use dc as
an back-end to actually perform the calculations as was the case with
the traditional bc and dc programs.

The major number has been bumped due to Windows support that has been
added to this version. It does not correspond to a major change that
might affect FreeBSD.


# 10328f8b 31-Jan-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '47a52dc4d48f259ab7d9f9ba6b65f4f2331a22dc'

Update to version 3.2.6

MFC after: 3 days


# 50696a6e 26-Nov-2020 Stefan Eßer <se@FreeBSD.org>

Update to version 3.2.0


# 10041e99 30-Nov-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.2.1 from vendor branch

Merge commit 'e63540eed295749528548c2e3a90f5a6e57275c8'


# d43fa8ef 04-Oct-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.1.0 from vendor branch

This version adds options and functions that allow to print numbers
in the open interval (-1 .. 1) with or without a leading 0 digit.

Additionally, an option has been added to prevent line wrap and
allows to print arbitrarily long results on a single line.

Merge commit '5d58a51571721190681c50d4bd3a1f45e6282d72'


# 44d4804d 10-Aug-2021 Stefan Eßer <se@FreeBSD.org>

usr.bin/ghä-bc, contrib/bc: update to version 5.0.0

Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4

This is a new major release with a number of changes and extensions:

- Limited the number of temporary numbers and made the space for them
static so that allocating more space for them cannot fail.
- Allowed integers with non-zero scale to be used with power, places,
and shift operators.
- Added greatest common divisor and least common multiple to lib2.bc.
- Made bc and dc UTF-8 capable.
- Added the ability for users to have bc and dc quit on SIGINT.
- Added the ability for users to disable prompt and TTY mode by
environment variables.
- Added the ability for users to redefine keywords.
- Added dc's modular exponentiation and divmod to bc.
- Added the ability to assign strings to variables and array elements
and pass them to functions in bc.
- Added dc's asciify command and stream printing to bc.
- Added bitwise and, or, xor, left shift, right shift, reverse,
left rotate, right rotate, and mod functions to lib2.bc.
- Added the functions s2u(x) and s2un(x,n), to lib2.bc.

MFC after: 1 week

# 8c39e252 11-May-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: update to version 4.0.2

Merge commit '2858419a0ee2b8f5827de72c00618bcd69ebc5fc'

This update fixes the initialization of "scale" to 20 if started with
-l and the initial statement leads to an error (e.g. contains a syntax
error). Scale was initialized to 0 in that case.

Another change is the support of job control in interactive mode with
line editing enabled. The control characters have been interpreted as
editing commands only, prior to this version.

MFC after: 3 days


# e681dd3e 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Revert "Vendor import of Gavin D. Howard's bc version 4.0.2"

The update had been performed on a check-out of the vendor branch,
but the final push lacked the target designation vendor/bc.

# e5092308 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Vendor import of Gavin D. Howard's bc version 4.0.2

# 7e5c51e5 06-Apr-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '7a590c074ceede12b2b6e794f8703d6fa5749918'

Update to version 4.0.0

This version fixes an issue (missing pop of top-of-stack value in the
"P" command of the dc program).

This issue did not affect the bc program, since it does not use dc as
an back-end to actually perform the calculations as was the case with
the traditional bc and dc programs.

The major number has been bumped due to Windows support that has been
added to this version. It does not correspond to a major change that
might affect FreeBSD.


# 10328f8b 31-Jan-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '47a52dc4d48f259ab7d9f9ba6b65f4f2331a22dc'

Update to version 3.2.6

MFC after: 3 days


# 50696a6e 26-Nov-2020 Stefan Eßer <se@FreeBSD.org>

Update to version 3.2.0


# d43fa8ef 04-Oct-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: merge version 5.1.0 from vendor branch

This version adds options and functions that allow to print numbers
in the open interval (-1 .. 1) with or without a leading 0 digit.

Additionally, an option has been added to prevent line wrap and
allows to print arbitrarily long results on a single line.

Merge commit '5d58a51571721190681c50d4bd3a1f45e6282d72'


# 44d4804d 10-Aug-2021 Stefan Eßer <se@FreeBSD.org>

usr.bin/ghä-bc, contrib/bc: update to version 5.0.0

Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4

This is a new major release with a number of changes and extensions:

- Limited the number of temporary numbers and made the space for them
static so that allocating more space for them cannot fail.
- Allowed integers with non-zero scale to be used with power, places,
and shift operators.
- Added greatest common divisor and least common multiple to lib2.bc.
- Made bc and dc UTF-8 capable.
- Added the ability for users to have bc and dc quit on SIGINT.
- Added the ability for users to disable prompt and TTY mode by
environment variables.
- Added the ability for users to redefine keywords.
- Added dc's modular exponentiation and divmod to bc.
- Added the ability to assign strings to variables and array elements
and pass them to functions in bc.
- Added dc's asciify command and stream printing to bc.
- Added bitwise and, or, xor, left shift, right shift, reverse,
left rotate, right rotate, and mod functions to lib2.bc.
- Added the functions s2u(x) and s2un(x,n), to lib2.bc.

MFC after: 1 week

# 8c39e252 11-May-2021 Stefan Eßer <se@FreeBSD.org>

contrib/bc: update to version 4.0.2

Merge commit '2858419a0ee2b8f5827de72c00618bcd69ebc5fc'

This update fixes the initialization of "scale" to 20 if started with
-l and the initial statement leads to an error (e.g. contains a syntax
error). Scale was initialized to 0 in that case.

Another change is the support of job control in interactive mode with
line editing enabled. The control characters have been interpreted as
editing commands only, prior to this version.

MFC after: 3 days


# e681dd3e 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Revert "Vendor import of Gavin D. Howard's bc version 4.0.2"

The update had been performed on a check-out of the vendor branch,
but the final push lacked the target designation vendor/bc.

# e5092308 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Vendor import of Gavin D. Howard's bc version 4.0.2

# 7e5c51e5 06-Apr-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '7a590c074ceede12b2b6e794f8703d6fa5749918'

Update to version 4.0.0

This version fixes an issue (missing pop of top-of-stack value in the
"P" command of the dc program).

This issue did not affect the bc program, since it does not use dc as
an back-end to actually perform the calculations as was the case with
the traditional bc and dc programs.

The major number has been bumped due to Windows support that has been
added to this version. It does not correspond to a major change that
might affect FreeBSD.


# 10328f8b 31-Jan-2021 Stefan Eßer <se@FreeBSD.org>

Merge commit '47a52dc4d48f259ab7d9f9ba6b65f4f2331a22dc'

Update to version 3.2.6

MFC after: 3 days


# 50696a6e 26-Nov-2020 Stefan Eßer <se@FreeBSD.org>

Update to version 3.2.0


# 44d4804d 10-Aug-2021 Stefan Eßer <se@FreeBSD.org>

usr.bin/ghä-bc, contrib/bc: update to version 5.0.0

Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4

This is a new major release with a number of changes and extensions:

- Limited the number of temporary numbers and made the space for them
static so that allocating more space for them cannot fail.
- Allowed integers with non-zero scale to be used with power, places,
and shift operators.
- Added greatest common divisor and least common multiple to lib2.bc.
- Made bc and dc UTF-8 capable.
- Added the ability for users to have bc and dc quit on SIGINT.
- Added the ability for users to disable prompt and TTY mode by
environment variables.
- Added the ability for users to redefine keywords.
- Added dc's modular exponentiation and divmod to bc.
- Added the ability to assign strings to variables and array elements
and pass them to functions in bc.
- Added dc's asciify command and stream printing to bc.
- Added bitwise and, or, xor, left shift, right shift, reverse,
left rotate, right rotate, and mod functions to lib2.bc.
- Added the functions s2u(x) and s2un(x,n), to lib2.bc.

MFC after: 1 week


# e681dd3e 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Revert "Vendor import of Gavin D. Howard's bc version 4.0.2"

The update had been performed on a check-out of the vendor branch,
but the final push lacked the target designation vendor/bc.


# e5092308 11-May-2021 Stefan Eßer <se@FreeBSD.org>

Vendor import of Gavin D. Howard's bc version 4.0.2