10000 [libxml2] fixed crash on missing lzma.h · ashang/python-for-android@3a93557 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3a93557

Browse files
committed
[libxml2] fixed crash on missing lzma.h
libxml2 has been updated from 2.7.8 to 2.9.8 at commit 6ed40d5, but version 2.8.0 added lzma compression support, and with it a dependency to liblzma (available at https://tukaani.org/xz/). This patch fixes it by disabling lzma support. A future improvment may add xz recipe and dependency.
1 parent a247632 commit 3a93557

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pythonforandroid/recipes/libxml2/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def build_arch(self, arch):
3737
'--without-python',
3838
'--without-threads',
3939
'--without-iconv',
40+
'--without-lzma',
4041
'--disable-shared',
4142
'--enable-static',
4243
_env=env)

0 commit comments

Comments
 (0)
0