diff options
author | Walter Dörwald <walter@livinglogic.de> | 2006-06-19 08:07:50 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2006-06-19 08:07:50 (GMT) |
commit | 4994d9546c723c01c2f4b34a401c544c859d3404 (patch) | |
tree | 92805448d61e0ad9ae61452c93e01522d40a9acc /pyconfig.h.in | |
parent | 43bc3788c0333b5d6230a5a28885b2fa70b42a86 (diff) | |
download | cpython-4994d9546c723c01c2f4b34a401c544c859d3404.zip cpython-4994d9546c723c01c2f4b34a401c544c859d3404.tar.gz cpython-4994d9546c723c01c2f4b34a401c544c859d3404.tar.bz2 |
Patch #1506645: add Python wrappers for the curses functions
is_term_resized, resize_term and resizeterm. This uses three
separate configure checks (one for each function).
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 84486ca..7598504 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -398,6 +398,15 @@ /* Define to 1 if you have the `realpath' function. */ #undef HAVE_REALPATH +/* Define to 1 if you have the `is_term_resized' function. */ +#undef HAVE_CURSES_IS_TERM_RESIZED + +/* Define to 1 if you have the `resize_term' function. */ +#undef HAVE_CURSES_RESIZE_TERM + +/* Define to 1 if you have the `resizeterm' function. */ +#undef HAVE_CURSES_RESIZETERM + /* Define if you have readline 2.1 */ #undef HAVE_RL_CALLBACK |