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):
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
Original file line number Diff line number Diff line change 66
77
88class 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
You can’t perform that action at this time.
0 commit comments