Update Makefile.depend filesAfter building packages we have a number of newand updated Makefile.depend filesReviewed by: stevek
Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I'll just run the command on the branches)Sponsored by: Netflix
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
usr.bin/gh-bc: update Makefiles for version 6.2.2The sources of this program are in contrib/bc, but built using theMakefiles touched in this commit, which had to be adapted to complywith changed
usr.bin/gh-bc: update Makefiles for version 6.2.2The sources of this program are in contrib/bc, but built using theMakefiles touched in this commit, which had to be adapted to complywith changed made to the build system of this software, which isnot used when building in the base system.
show more ...
usr.bin/ghä-bc, contrib/bc: update to version 5.0.0Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4This is a new major release with a number of changes and extensions:- Limited the number
usr.bin/ghä-bc, contrib/bc: update to version 5.0.0Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4This 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
Connect the tests provided with the new bc and dcThe tests compare the command output (including of error cases) with theexpected output and exit code.Not all tests are executed, since some expe
Connect the tests provided with the new bc and dcThe tests compare the command output (including of error cases) with theexpected output and exit code.Not all tests are executed, since some expect to have a known good bc anddc binary installed and compare results of large amounts of generated databeing processed by both versions to test for regressions.