From: Walter Dörwald Date: Mon, 19 Jun 2006 08:14:09 +0000 (+0000) Subject: Make check order match in configure and configure.in. X-Git-Tag: v2.5b1~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05fdbf15bac6ce2a2712484d5e05bab8f320a58d;p=python Make check order match in configure and configure.in. --- diff --git a/configure.in b/configure.in index 2e9ea1010e..9ab576d3d5 100644 --- a/configure.in +++ b/configure.in @@ -3302,16 +3302,16 @@ AC_TRY_COMPILE([#include ], void *x=is_term_resized, AC_MSG_RESULT(no) ) -AC_MSG_CHECKING(for resizeterm) -AC_TRY_COMPILE([#include ], 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 ], 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 ], 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 ], void *x=resizeterm, + AC_DEFINE(HAVE_CURSES_RESIZETERM, 1, Define if you have the 'resizeterm' function.) AC_MSG_RESULT(yes), AC_MSG_RESULT(no) )