Skip to content

Commit 41595e5

Browse files
authored
Merge pull request #2842 from T-Dynamos/libzmq
libzmq: fix build
2 parents ba77db0 + 393ad44 commit 41595e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pythonforandroid/recipes/libzmq/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
class LibZMQRecipe(Recipe):
9-
version = '4.3.2'
9+
version = '4.3.4'
1010
url = 'https://github.com/zeromq/libzmq/releases/download/v{version}/zeromq-{version}.zip'
1111
depends = []
1212
built_libraries = {'libzmq.so': 'src/.libs'}
@@ -34,6 +34,7 @@ def build_arch(self, arch):
3434
'--prefix={}'.format(prefix),
3535
'--with-libsodium=no',
3636
'--disable-libunwind',
37+
'--disable-Werror',
3738
_env=env)
3839
shprint(sh.make, _env=env)
3940
shprint(sh.make, 'install', _env=env)

0 commit comments

Comments
 (0)