summaryrefslogtreecommitdiff
path: root/m4/ax_python.m4
diff options
context:
space:
mode:
authorMikael Lepistö <mikael.lepisto@tut.fi>2007-07-18 19:52:52 +0200
committerPeter Simons <simons@cryp.to>2007-07-18 19:52:52 +0200
commit4667a7839b76c0c4ad197b1bb48070bcadba7dcb (patch)
tree25486be36c07d6782583d00440de1092ef722b5b /m4/ax_python.m4
parent148c4b760d737afbf19070f054a83200ac5ce362 (diff)
downloadautoconf-archive-4667a7839b76c0c4ad197b1bb48070bcadba7dcb.tar.gz
AX_PYTHON: added support for python 2.5
Diffstat (limited to 'm4/ax_python.m4')
-rw-r--r--m4/ax_python.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/ax_python.m4 b/m4/ax_python.m4
index 2d41228..b849665 100644
--- a/m4/ax_python.m4
+++ b/m4/ax_python.m4
@@ -8,7 +8,7 @@
#
# This macro does a complete Python development environment check.
#
-# It recurses through several python versions (from 2.1 to 2.4 in
+# It recurses through several python versions (from 2.1 to 2.5 in
# this version), looking for an executable. When it finds an
# executable, it looks to find the header files and library.
#
@@ -21,11 +21,11 @@
#
# LAST MODIFICATION
#
-# 2004-09-20
+# 2007-07-18
#
# COPYLEFT
#
-# Copyright (c) 2004 Michael Tindal <mtindal@paradoxpoint.com>
+# Copyright (c) 2007 Michael Tindal <mtindal@paradoxpoint.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
@@ -60,7 +60,7 @@
AC_DEFUN([AX_PYTHON],
[AC_MSG_CHECKING(for python build information)
AC_MSG_RESULT([])
-for python in python2.4 python2.3 python2.2 python2.1 python; do
+for python in python2.5 python2.4 python2.3 python2.2 python2.1 python; do
AC_CHECK_PROGS(PYTHON_BIN, [$python])
ax_python_bin=$PYTHON_BIN
if test x$ax_python_bin != x; then