diff options
author | 2024-04-02 18:17:13 +0200 | |
---|---|---|
committer | 2024-04-02 18:17:13 +0200 | |
commit | 3969bc93e05e0f1f50175cd99b8ecabfd0ba6009 (patch) | |
tree | 38334754185e51c677c7b0a91fc9037b5dd3e4bb /configure.ac | |
parent | 3cea6058078703f5d6752a48a1c736d308fdd31d (diff) | |
download | libimobiledevice-3969bc93e05e0f1f50175cd99b8ecabfd0ba6009.tar.gz libimobiledevice-3969bc93e05e0f1f50175cd99b8ecabfd0ba6009.tar.bz2 |
autoconf: Require cython 3.0 for python bindings
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 3c12010..9856ae2 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -132,9 +132,9 @@ AC_ARG_WITH([cython], | |||
132 | [build_cython=false], | 132 | [build_cython=false], |
133 | [build_cython=true]) | 133 | [build_cython=true]) |
134 | if test "$build_cython" = "true"; then | 134 | if test "$build_cython" = "true"; then |
135 | AC_PROG_CYTHON([0.17.0]) | 135 | AC_PROG_CYTHON([3.0.0]) |
136 | if [test "x$CYTHON" != "xfalse"]; then | 136 | if [test "x$CYTHON" != "xfalse"]; then |
137 | AM_PATH_PYTHON([2.3], [ | 137 | AM_PATH_PYTHON([3.0], [ |
138 | CYTHON_PYTHON | 138 | CYTHON_PYTHON |
139 | AS_COMPILER_FLAG([-Wno-cast-function-type -Werror], [ | 139 | AS_COMPILER_FLAG([-Wno-cast-function-type -Werror], [ |
140 | CYTHON_CFLAGS+=" -Wno-cast-function-type" | 140 | CYTHON_CFLAGS+=" -Wno-cast-function-type" |