contrib/bsddialog: Import version 1.0.5
Version for change and feature requests.
* Improve documentation for --alternate-screen and --normal-screen.
Request: https://bugs.freebsd.org/285459. (This PR is not about
bsddialog itself but is used as an example for an official FreeBSD
documentation request.)
* Reduce the number of screen refreshes to improve performance over a
115200 UART connection.
Request: https://gitlab.com/alfix/bsddialog/-/issues/8.
* Change textbox buttons to return distinct values (previously always
returned OK).
Request: https://reviews.freebsd.org/D48668; already committed in
contrib/ 96a241a359
* Change forms navigation key behavior for ENTER and TAB.
Request: https://bugs.freebsd.org/287592.
Refer to /usr/src/contrib/bsddialog/CHANGELOG to know more.
PR: 287592
Reported by: adrian
Sponsored by: The FreeBSD Foundation
This commit is contained in:
@@ -8,14 +8,16 @@
|
||||
# worldwide. This software is distributed without any warranty, see:
|
||||
# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
||||
|
||||
set -x
|
||||
|
||||
libpath=../lib
|
||||
examples="menu checklist radiolist mixedlist theme infobox yesno msgbox \
|
||||
datebox form timebox rangebox pause calendar gauge mixedgauge"
|
||||
datebox form timebox rangebox pause calendar gauge mixedgauge textbox"
|
||||
|
||||
rm -f $examples
|
||||
|
||||
for e in $examples
|
||||
do
|
||||
cc -g -Wall -Wextra -I$libpath ${e}.c -o $e -L$libpath -lbsddialog \
|
||||
-Wl,-rpath=$libpath
|
||||
cc -g -Wall -Wextra -I$libpath ${e}.c -o $e \
|
||||
-Wl,-rpath=$libpath -L$libpath -lbsddialog
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user