From 64b05d238d693c8db92ee288f66f680a219a8ada Mon Sep 17 00:00:00 2001 From: malaterre Date: Mon, 15 Sep 2003 12:02:42 +0000 Subject: [PATCH] * Fix a cygwin complain about not finding python2.3, (thanks to LFV) --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 9c90a4a6..d7db261c 100644 --- a/configure.in +++ b/configure.in @@ -62,7 +62,7 @@ AC_ARG_ENABLE(python, dnl AC_MSG_RESULT($enable_python) build_python=no if test "yes" = "$enable_python"; then - AM_PATH_PYTHON(2.0) + AM_PATH_PYTHON(2.0.0) if test -n "$PYTHON"; then AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)]) build_python=yes; -- 2.48.1