]> granicus.if.org Git - python/commitdiff
Make check order match in configure and configure.in.
authorWalter Dörwald <walter@livinglogic.de>
Mon, 19 Jun 2006 08:14:09 +0000 (08:14 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Mon, 19 Jun 2006 08:14:09 +0000 (08:14 +0000)
configure.in

index 2e9ea1010eb6196cca7f4f7efb5684bdbd104f50..9ab576d3d58714952da3c4f3d7abd6cfb48ebead 100644 (file)
@@ -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)
 )