[Python-checkins] r47023 - python/trunk/configure.in

walter.doerwald python-checkins at python.org
Mon Jun 19 10:14:09 CEST 2006


Author: walter.doerwald
Date: Mon Jun 19 10:14:09 2006
New Revision: 47023

Modified:
   python/trunk/configure.in
Log:
Make check order match in configure and configure.in.


Modified: python/trunk/configure.in
==============================================================================
--- python/trunk/configure.in	(original)
+++ python/trunk/configure.in	Mon Jun 19 10:14:09 2006
@@ -3302,16 +3302,16 @@
   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)
 )


More information about the Python-checkins mailing list