summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2024-04-02 18:38:09 +0200
committerGravatar Nikias Bassen2024-04-02 18:38:09 +0200
commit612cdf3ffd3e8c200e4a21ec15e3b3f0af170b42 (patch)
tree855203e0f50c90eb78b883fc74983842a48a6d17
parenta1ef9d32a3515ae14e5c8ca937a1955b5dbd6642 (diff)
downloadlibplist-612cdf3ffd3e8c200e4a21ec15e3b3f0af170b42.tar.gz
libplist-612cdf3ffd3e8c200e4a21ec15e3b3f0af170b42.tar.bz2
autoconf: Require cython 3.0 for python bindings
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 757ea95..fe6592b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -147,9 +147,9 @@ 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 AC_PROG_CYTHON([0.17.0]) 150 AC_PROG_CYTHON([3.0.0])
151 if [test "x$CYTHON" != "xfalse"]; then 151 if [test "x$CYTHON" != "xfalse"]; then
152 AM_PATH_PYTHON([2.3], [CYTHON_PYTHON]) 152 AM_PATH_PYTHON([3.0], [CYTHON_PYTHON])
153 fi 153 fi
154else 154else
155 CYTHON=false 155 CYTHON=false