summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index d07ff30..0fd1364 100644
--- a/configure.ac
+++ b/configure.ac
@@ -147,9 +147,10 @@ AC_ARG_WITH([cython],
147 [build_cython=false], 147 [build_cython=false],
148 [build_cython=true]) 148 [build_cython=true])
149if test "$build_cython" = "true"; then 149if test "$build_cython" = "true"; then
150 AM_PATH_PYTHON(2.3) 150 AC_PROG_CYTHON([0.17.0])
151 AC_PROG_CYTHON(0.17.0) 151 if [test "x$CYTHON" != "xfalse"]; then
152 CYTHON_PYTHON 152 AM_PATH_PYTHON([2.3], [CYTHON_PYTHON])
153 fi
153else 154else
154 CYTHON=false 155 CYTHON=false
155fi 156fi