diff options
author | C. Davis <cd.rattan@gmail.com> | 2012-07-27 03:37:22 -0700 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-04-29 13:05:57 +0200 |
commit | 6155abcf82f0bb03e62f7fc4b1df3f7260337bc3 (patch) | |
tree | 889e9bd10005b0fffbcecb5f3ef372508ffb345f /source3/wscript | |
parent | 4267ec59feca258792e62aa2525b246599478fa8 (diff) | |
download | samba-6155abcf82f0bb03e62f7fc4b1df3f7260337bc3.tar.gz samba-6155abcf82f0bb03e62f7fc4b1df3f7260337bc3.tar.bz2 samba-6155abcf82f0bb03e62f7fc4b1df3f7260337bc3.zip |
regedit: Introduce dialog windows.
Link to ncurses "panels" library to support popup dialog
windows, and begin working on a small dialog library.
Right now, it is useful for "yes/no" confirmation popups,
but later it'll be used for more complex forms for editing
values.
Reviewed-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/wscript')
-rw-r--r-- | source3/wscript | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/wscript b/source3/wscript index 54daaa7f22..4fbc19158d 100644 --- a/source3/wscript +++ b/source3/wscript @@ -1718,6 +1718,8 @@ main() { ncurses = conf.CHECK_FUNCS_IN('initscr', 'ncurses', headers='ncurses.h') menu = conf.CHECK_FUNCS_IN('set_menu_items item_count', 'menu', headers='menu.h') + panel = conf.CHECK_FUNCS_IN('new_panel show_panel', 'panel', + headers='panel.h') if ncurses and menu: conf.env.build_regedit = True |