diff options
author | Slávek Banko <[email protected]> | 2023-02-02 01:31:01 +0100 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-02-02 10:48:40 +0900 |
commit | cb526fe9fffad2bc95e5230048c2b51837365c33 (patch) | |
tree | d9b480fd6d7b8995835834cbbf1831549b5731af | |
parent | 21c6548234338921fe97ec67148e9fa753c694b4 (diff) | |
download | koffice-cb526fe9fffad2bc95e5230048c2b51837365c33.tar.gz koffice-cb526fe9fffad2bc95e5230048c2b51837365c33.zip |
Disable build of Kross python plugin, because it is not compatible with Python >= 3.
Signed-off-by: Slávek Banko <[email protected]>
-rw-r--r-- | lib/kross/configure.in.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/kross/configure.in.in b/lib/kross/configure.in.in index 67e9aaf5..636c4b3a 100644 --- a/lib/kross/configure.in.in +++ b/lib/kross/configure.in.in @@ -14,8 +14,11 @@ fi # Compile the Kross python plugin only if both, $LIBPYTHON and # $PYTHONINC, are defined. +# +# WARNING: Building Kross python plugin is now prohibited at all times, +# because it is not compatible with Python >= 3. AM_CONDITIONAL(compile_kross_python, - test -n "$LIBPYTHON" && test -n "$PYTHONINC") + false && test -n "$LIBPYTHON" && test -n "$PYTHONINC") ############################### # Check for Ruby |