diff options
author | Martin Szulecki | 2013-02-27 15:04:05 +0100 |
---|---|---|
committer | Martin Szulecki | 2013-02-27 15:04:05 +0100 |
commit | 7adb1424926e4e4777092fed2dbc9c3b8d68e983 (patch) | |
tree | 133a77a9214dc9433c4180b94527c0e793b6fbe7 | |
parent | 82429cd891bb26f2c5b77ff90e3e62eb60434bc6 (diff) | |
download | libimobiledevice-7adb1424926e4e4777092fed2dbc9c3b8d68e983.tar.gz libimobiledevice-7adb1424926e4e4777092fed2dbc9c3b8d68e983.tar.bz2 |
configure.ac: Require cython 0.17.0 or later
Earlier versions are just too different and cause to many issues.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1210af8..fb479e4 100644 --- a/configure.ac +++ b/configure.ac @@ -91,7 +91,7 @@ AC_ARG_WITH([cython], [build_cython=true]) if test "$build_cython" = "true"; then AM_PATH_PYTHON(2.3) - AC_PROG_CYTHON(0.13.0) + AC_PROG_CYTHON(0.17.0) CYTHON_PYTHON else CYTHON=false |