diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-10-31 11:56:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-31 11:56:44 (GMT) |
commit | baac01e629d90f63dfde6b5cc433f4bc65c5feeb (patch) | |
tree | 88a628d5dfb9ca8d5a3824dd195bc4c83690f1a3 /pyconfig.h.in | |
parent | 19f68301a1295a9c30d9f28b8f1479cdcccd75aa (diff) | |
download | cpython-baac01e629d90f63dfde6b5cc433f4bc65c5feeb.zip cpython-baac01e629d90f63dfde6b5cc433f4bc65c5feeb.tar.gz cpython-baac01e629d90f63dfde6b5cc433f4bc65c5feeb.tar.bz2 |
bpo-31891: Fix building the curses module on NetBSD. (#4165)
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 662c42e..afd161c 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -146,9 +146,18 @@ /* Define if you have the 'ctermid_r' function. */ #undef HAVE_CTERMID_R +/* Define if you have the 'filter' function. */ +#undef HAVE_CURSES_FILTER + /* Define to 1 if you have the <curses.h> header file. */ #undef HAVE_CURSES_H +/* Define if you have the 'has_key' function. */ +#undef HAVE_CURSES_HAS_KEY + +/* Define if you have the 'immedok' function. */ +#undef HAVE_CURSES_IMMEDOK + /* Define if you have the 'is_term_resized' function. */ #undef HAVE_CURSES_IS_TERM_RESIZED @@ -158,6 +167,15 @@ /* Define if you have the 'resize_term' function. */ #undef HAVE_CURSES_RESIZE_TERM +/* Define if you have the 'syncok' function. */ +#undef HAVE_CURSES_SYNCOK + +/* Define if you have the 'typeahead' function. */ +#undef HAVE_CURSES_TYPEAHEAD + +/* Define if you have the 'use_env' function. */ +#undef HAVE_CURSES_USE_ENV + /* Define to 1 if you have the declaration of `isfinite', and to 0 if you don't. */ #undef HAVE_DECL_ISFINITE |