contrib/bc: upgrade to version 6.7.6This update fixes a potential issue when flushing stdout on exitfails: longjmp could use an uninitialized target address variable.Most files are included in t
contrib/bc: upgrade to version 6.7.6This update fixes a potential issue when flushing stdout on exitfails: longjmp could use an uninitialized target address variable.Most files are included in this commit due to a changed date inthe copyright note.(cherry picked from commit 52a5ec1b178fd07651446c7e31b1512794a04dbf)MFC after: 3 days
show more ...
contrib/bc: merge from vendor release 6.2.2This update fixes a few issues in history editing and the processingof the "quit" function. The "quit" function will no longer cause bcto exit when enco
contrib/bc: merge from vendor release 6.2.2This update fixes a few issues in history editing and the processingof the "quit" function. The "quit" function will no longer cause bcto exit when encountered in a script file (before any command fromthe script has been executed).New functions is_number(), is_string return 1 if the passed argumentis a number resp. a string. The asciify() function has been extendedto support the conversion of an array of numbers into a string.Merge commit '1a63323d17fedb05b6962853e821c9d7c6b9853e'
usr.bin/bc: update to version 5.3.1This version adds support for command line editing and history usingthe libedit or readline libraries in addition to the line editingfeatures available in previ
usr.bin/bc: update to version 5.3.1This version adds support for command line editing and history usingthe libedit or readline libraries in addition to the line editingfeatures 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 andto use command overrides via a ~/.editrc file.Merge commit 'bd54318046bfee055b140705a5cfd4148e78da07'PR: 264010MFC after: 2 weeks
contrib/bc: merge version 5.2.1 from vendor branchMerge commit 'e63540eed295749528548c2e3a90f5a6e57275c8'
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
Merge commit '47a52dc4d48f259ab7d9f9ba6b65f4f2331a22dc'Update to version 3.2.6MFC after: 3 days
Upgrade to version 3.1.5This version fixes some entries in the chinese message catalogs which couldlead to program crashes when used.
Update to version 3.1.1This version fixes a regression with regard to tradtional behavior of thenon-standard FreeBSD option "-e". In the previous version "-e quit" causedbc to exit before any com
Update to version 3.1.1This version fixes a regression with regard to tradtional behavior of thenon-standard FreeBSD option "-e". In the previous version "-e quit" causedbc to exit before any computations had been performed, since all -e optionparameters were concatenated and parsed as a whole, with quit causing theprogram to exit as soon as it was parsed. This version parses and executescommands passed with -e one by one and only exits after all prior commandshave been executed.This commit is not a SVN merge, since the vendor import had been performedafter the import to contrib. Instead the contents of contrib/bc has beenremoved and the new version is copied over unchanged from vendor/bc/dist.
Import new 2-clause BSD licenced implementation of the bc and dc commandsThese implementations of the bc and dc programs offer a number of advantagescompared to the current implementations in the
Import new 2-clause BSD licenced implementation of the bc and dc commandsThese implementations of the bc and dc programs offer a number of advantagescompared to the current implementations in the FreeBSD base system:- They do not depend on external large number functions (i.e. no dependency on OpenSSL or any other large number library)- They implements all features found in GNU bc/dc (with the exception of the forking of sub-processes, which the author of this version considers as a security issue).- They are significantly faster than the current code in base (more than 2 orders of magnitude in some of my tests, e.g. for 12345^100000).- They should be fully compatible with all features and the behavior of the current implementations in FreeBSD (not formally verified).- They support POSIX message catalogs and come with localized messages in Chinese, Dutch, English, French, German, Japanese, Polish, Portugueze, and Russian.- They offer very detailed man-pages that provide far more information than the current ones.The upstream sources contain a large number of tests, which are notimported with this commit. They could be integrated into our testframework at a latter time.Installation of this version is controlled by the option "MK_GH_BC=yes".This option will be set to yes by default in 13-CURRENT, but will be offby default in 12-STABLE.Approved by: impObtained from: https://git.yzena.com/gavin/bcMFC after: 4 weeksRelnotes: yesDifferential Revision: https://reviews.freebsd.org/D19982