File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,13 @@ class KivyRecipe(PyProjectRecipe):
34
34
# WARNING: Remove this patch when a new Kivy version is released.
35
35
patches = [("sdl-gl-swapwindow-nogil.patch" , is_kivy_affected_by_deadlock_issue ), "use_cython.patch" ]
36
36
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
+
37
44
def get_recipe_env (self , arch , ** kwargs ):
38
45
env = super ().get_recipe_env (arch , ** kwargs )
39
46
Original file line number Diff line number Diff line change 6
6
7
7
8
8
class LibSDL3Recipe (BootstrapNDKRecipe ):
9
- version = "3.2.10 "
9
+ version = "3.2.18 "
10
10
url = "https://github.com/libsdl-org/SDL/releases/download/release-{version}/SDL3-{version}.tar.gz"
11
- md5sum = "70cda886bcf5a4fdac550db796d2efa2 "
11
+ md5sum = "c7808ef624b74e2ac69cf531e78e0c6e "
12
12
13
13
conflicts = ["sdl2" ]
14
14
You can’t perform that action at this time.
0 commit comments