Skip to content

Commit

Permalink
waf: Create a better wscript for finding ncurses.
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Schneider <[email protected]>
Reviewed-by: Michael Adam <[email protected]>
  • Loading branch information
cryptomilk authored and obnoxxx committed Apr 29, 2013
1 parent 5e0f4be commit 86f88ee
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
9 changes: 1 addition & 8 deletions source3/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -1714,14 +1714,7 @@ main() {
conf.DEFINE('HAVE_CEPH', '1')

if Options.options.with_regedit:
#XXX these checks might need to be expanded
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
conf.PROCESS_SEPARATE_RULE('system_ncurses')

default_static_modules.extend(TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam
auth_sam auth_unix auth_winbind auth_wbc
Expand Down
23 changes: 23 additions & 0 deletions source3/wscript_configure_system_ncurses
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import Logs, Options, sys

Logs.info("Looking for ncurses features")

if isinstance(Options.options.with_regedit, list):
path_ncurses_config = [x+'/bin' for x in Options.options.with_regedit]
else:
path_ncurses_config = None

conf.find_program('ncurses5-config', path_list=path_ncurses_config, var='NCURSES_CONFIG')
if not conf.env.NCURSES_CONFIG:
conf.find_program('ncurses6-config', path_list=path_ncurses_config, var='NCURSES_CONFIG')

if conf.env.NCURSES_CONFIG:
conf.check_cfg(path=conf.env.NCURSES_CONFIG, args="--cflags --libs",
package="", uselib_store="NCURSES")
conf.env.build_regedit = True

conf.CHECK_HEADERS('ncurses.h menu.h panel.h', lib='ncurses')

conf.CHECK_FUNCS_IN('initscr', 'ncurses')
conf.CHECK_FUNCS_IN('set_menu_items item_count', 'menu')
conf.CHECK_FUNCS_IN('new_panel show_panel', 'panel')

0 comments on commit 86f88ee

Please sign in to comment.