1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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 form.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')
conf.CHECK_FUNCS_IN('new_field new_form', 'form')
|