Skip to content

Commit 85d9d23

Browse files
authored
Update __init__.py
Bump version, change depends to hostpython_prerequisites. Fix kivy#3122
1 parent d65e3c6 commit 85d9d23

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pythonforandroid/recipes/kiwisolver/__init__.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33

44
class KiwiSolverRecipe(PyProjectRecipe):
55
site_packages_name = 'kiwisolver'
6-
version = '1.4.5'
6+
version = '1.4.8'
77
url = 'git+https://github.com/nucleic/kiwi'
8-
depends = ['cppy']
8+
hostpython_prerequisites = ['cppy']
99
need_stl_shared = True
1010

1111
# from https://github.com/kivy/python-for-android/issues/3115
1212
def get_recipe_env(self, arch, **kwargs):
1313
env = super().get_recipe_env(arch, **kwargs)
1414
flags = " -I" + self.ctx.python_recipe.include_root(arch.arch)
15-
env["CFLAGS"] = flags
16-
env["CPPFLAGS"] = flags
15+
env["CFLAGS"] += flags
16+
env["CPPFLAGS"] += flags
1717
return env
1818

1919

0 commit comments

Comments
 (0)