summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-11-30 22:09:37 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2004-11-30 22:09:37 (GMT)
commitfd1c69e7ef95659bc8ce488b57d0a9ea425314e0 (patch)
treea43ce5777b817897d48988f08e9f0c115bc21d02 /configure.in
parent738131d39130563ad75e73ed544e2a3edbae64f2 (diff)
downloadcpython-fd1c69e7ef95659bc8ce488b57d0a9ea425314e0.zip
cpython-fd1c69e7ef95659bc8ce488b57d0a9ea425314e0.tar.gz
cpython-fd1c69e7ef95659bc8ce488b57d0a9ea425314e0.tar.bz2
Bump version number to 2.5.
Fix term.h check so that HAVE_TERM_H is actually generated.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 370fdf5..7986cbc 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
dnl Process this file with autoconf 2.0 or later to make a configure script.
# Set VERSION so we only need to edit in one place (i.e., here)
-m4_define(PYTHON_VERSION, 2.4)
+m4_define(PYTHON_VERSION, 2.5)
AC_REVISION($Revision$)
AC_PREREQ(2.53)
@@ -974,7 +974,7 @@ AC_HEADER_DIRENT
AC_HEADER_MAJOR
# On Solaris, term.h requires curses.h
-AC_CHECK_HEADER(term.h,,,[
+AC_CHECK_HEADERS(term.h,,,[
#ifdef HAVE_CURSES_H
#include <curses.h>
#endif