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 a970610a3af63b3f4df5b69d91c6b4093a00ed8f)
show more ...
contrib/bc: uodate to version 6.2.4This update contains only documentation changes (new main repositoryURL and changed mail address of the program author) and changes tothe build system that do n
contrib/bc: uodate to version 6.2.4This update contains only documentation changes (new main repositoryURL and changed mail address of the program author) and changes tothe build system that do not affect the FreeBSD base system build.MFC after: 3 days
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/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 '7a590c074ceede12b2b6e794f8703d6fa5749918'Update to version 4.0.0This version fixes an issue (missing pop of top-of-stack value in the"P" command of the dc program).This issue did
Merge commit '7a590c074ceede12b2b6e794f8703d6fa5749918'Update to version 4.0.0This 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 asan back-end to actually perform the calculations as was the case withthe traditional bc and dc programs.The major number has been bumped due to Windows support that has beenadded to this version. It does not correspond to a major change thatmight affect FreeBSD.
gptboot.efi: Add man pageAdd a man page for gptboot.efi. Describe when and how to use this as it differsfrom the BIOS cases. Include cross reference for the preferred method describedin efibootmg
gptboot.efi: Add man pageAdd a man page for gptboot.efi. Describe when and how to use this as it differsfrom the BIOS cases. Include cross reference for the preferred method describedin efibootmgr(8) as well as cross links in both gptboot(8) and gptboot.efi(8) tothe other.This man page was heavily copied from the gptboot.8 man page by Warren Block.They are different enough to need separate man pages for clarity, but there'senough similarity that I worry about the duplication. In the really long term,gptboot(8) will disappear, so having the same info here will help when thatday comes. In the short to medium term, the information is likely to notchange in gptboot(8) and any changes to gptboot.efi(8) will be easier tomake in a separate copy.loader.efi(8) needs a complete rewrite from scratch, otherwise I'd havereferenced gptboot.efi(8) from there.Suggetions from: cress@, mhorne@Reviewed by: rpokala@Differential Revision: https://reviews.freebsd.org/D29591