Skip to content

Commit b6b3a8e

Browse files
authored
Merge branch 'develop' into python-update
2 parents d54d5a7 + 5330267 commit b6b3a8e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

pythonforandroid/recipes/kivy/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ class KivyRecipe(PyProjectRecipe):
3434
# WARNING: Remove this patch when a new Kivy version is released.
3535
patches = [("sdl-gl-swapwindow-nogil.patch", is_kivy_affected_by_deadlock_issue), "use_cython.patch"]
3636

37+
@property
38+
def need_stl_shared(self):
39+
if "sdl3" in self.ctx.recipe_build_order:
40+
return True
41+
else:
42+
return False
43+
3744
def get_recipe_env(self, arch, **kwargs):
3845
env = super().get_recipe_env(arch, **kwargs)
3946

pythonforandroid/recipes/sdl3/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77

88
class LibSDL3Recipe(BootstrapNDKRecipe):
9-
version = "3.2.10"
9+
version = "3.2.18"
1010
url = "https://github.com/libsdl-org/SDL/releases/download/release-{version}/SDL3-{version}.tar.gz"
11-
md5sum = "70cda886bcf5a4fdac550db796d2efa2"
11+
md5sum = "c7808ef624b74e2ac69cf531e78e0c6e"
1212

1313
conflicts = ["sdl2"]
1414

0 commit comments

Comments
 (0)