diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-07-30 14:09:47 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-07-30 14:09:47 (GMT) |
commit | 0907f4dc5b322020823312220e03bef9ed8d91d7 (patch) | |
tree | e61be823459e5dd1da6ca9d7070a359902d1b4dc /pyconfig.h.in | |
parent | 77621585e48c7f00a8ce3874d2bc3cb317c0f8eb (diff) | |
download | cpython-0907f4dc5b322020823312220e03bef9ed8d91d7.zip cpython-0907f4dc5b322020823312220e03bef9ed8d91d7.tar.gz cpython-0907f4dc5b322020823312220e03bef9ed8d91d7.tar.bz2 |
Drop usage of test -e in configure as it is not portable.
Fixes #1439538
Will backport to 2.4
Also regenerate pyconfig.h.in.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 7598504..a3d7f6e 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -85,6 +85,15 @@ /* Define to 1 if you have the <curses.h> header file. */ #undef HAVE_CURSES_H +/* Define if you have the 'is_term_resized' function. */ +#undef HAVE_CURSES_IS_TERM_RESIZED + +/* Define if you have the 'resizeterm' function. */ +#undef HAVE_CURSES_RESIZETERM + +/* Define if you have the 'resize_term' function. */ +#undef HAVE_CURSES_RESIZE_TERM + /* Define to 1 if you have the device macros. */ #undef HAVE_DEVICE_MACROS @@ -398,15 +407,6 @@ /* 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 |