diff options
author | midipix <writeonce@midipix.org> | 2021-06-15 11:26:08 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-15 11:26:08 +0000 |
commit | a49e352eab941ba7841d55cde85f1969eb5a6a90 (patch) | |
tree | 249be09919e60d5926283801feb16e6c4cf58ef4 /project/config | |
parent | 748534c6ea020f63a9becd5ac30841fede961220 (diff) | |
download | sbpython3-a49e352eab941ba7841d55cde85f1969eb5a6a90.tar.bz2 sbpython3-a49e352eab941ba7841d55cde85f1969eb5a6a90.tar.xz |
project: cfgdefs.sh: cfgdefs_perform_common_tests(): additional curses api's.
Diffstat (limited to 'project/config')
-rw-r--r-- | project/config/cfgdefs.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/project/config/cfgdefs.sh b/project/config/cfgdefs.sh index 09b8f62..c76629d 100644 --- a/project/config/cfgdefs.sh +++ b/project/config/cfgdefs.sh @@ -299,6 +299,38 @@ cfgdefs_perform_common_tests() cfgtest_makevar_append '-DHAVE_CURSES_RESIZE_TERM' fi + if cfgtest_unit_interface_presence 'filter'; then + cfgtest_makevar_append '-DHAVE_CURSES_FILTER' + fi + + if cfgtest_unit_interface_presence 'has_key'; then + cfgtest_makevar_append '-DHAVE_CURSES_HAS_KEY' + fi + + if cfgtest_unit_interface_presence 'immedok'; then + cfgtest_makevar_append '-DHAVE_CURSES_IMMEDOK' + fi + + if cfgtest_unit_interface_presence 'is_pad'; then + cfgtest_makevar_append '-DHAVE_CURSES_IS_PAD' + fi + + if cfgtest_unit_interface_presence 'syncok'; then + cfgtest_makevar_append '-DHAVE_CURSES_SYNCOK' + fi + + if cfgtest_unit_interface_presence 'typeahead'; then + cfgtest_makevar_append '-DHAVE_CURSES_TYPEAHEAD' + fi + + if cfgtest_unit_interface_presence 'use_env'; then + cfgtest_makevar_append '-DHAVE_CURSES_USE_ENV' + fi + + if cfgtest_unit_interface_presence 'wchgat'; then + cfgtest_makevar_append '-DHAVE_CURSES_WCHGAT' + fi + # ncursesw if cfgtest_unit_interface_presence 'mvwget_wch'; then cfgtest_makevar_append '-DHAVE_NCURSESW' |