diff options
author | Walter Dörwald <walter@livinglogic.de> | 2006-06-19 08:14:09 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2006-06-19 08:14:09 (GMT) |
commit | 05fdbf15bac6ce2a2712484d5e05bab8f320a58d (patch) | |
tree | c0bfe3602f4eefb45faf02b2dd4bd5c3be7b517b /configure.in | |
parent | 4994d9546c723c01c2f4b34a401c544c859d3404 (diff) | |
download | cpython-05fdbf15bac6ce2a2712484d5e05bab8f320a58d.zip cpython-05fdbf15bac6ce2a2712484d5e05bab8f320a58d.tar.gz cpython-05fdbf15bac6ce2a2712484d5e05bab8f320a58d.tar.bz2 |
Make check order match in configure and configure.in.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.in b/configure.in index 2e9ea10..9ab576d 100644 --- a/configure.in +++ b/configure.in @@ -3302,16 +3302,16 @@ AC_TRY_COMPILE([#include <curses.h>], void *x=is_term_resized, AC_MSG_RESULT(no) ) -AC_MSG_CHECKING(for resizeterm) -AC_TRY_COMPILE([#include <curses.h>], void *x=resizeterm, - AC_DEFINE(HAVE_CURSES_RESIZETERM, 1, Define if you have the 'resizeterm' function.) +AC_MSG_CHECKING(for resize_term) +AC_TRY_COMPILE([#include <curses.h>], void *x=resize_term, + AC_DEFINE(HAVE_CURSES_RESIZE_TERM, 1, Define if you have the 'resize_term' function.) AC_MSG_RESULT(yes), AC_MSG_RESULT(no) ) -AC_MSG_CHECKING(for resize_term) -AC_TRY_COMPILE([#include <curses.h>], void *x=resize_term, - AC_DEFINE(HAVE_CURSES_RESIZE_TERM, 1, Define if you have the 'resize_term' function.) +AC_MSG_CHECKING(for resizeterm) +AC_TRY_COMPILE([#include <curses.h>], void *x=resizeterm, + AC_DEFINE(HAVE_CURSES_RESIZETERM, 1, Define if you have the 'resizeterm' function.) AC_MSG_RESULT(yes), AC_MSG_RESULT(no) ) |