blob: a00141b36693ed9ca7dbb3ca6487a626d05ff144 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Patches for Super-Mario on SerenityOS
## `0001-chdir-to-the-installed-directory-before-execution.patch`
chdir() to the installed directory before execution
The game expects its assets in the current directory, but we install
those to /opt/Super_Mario, so chdir() there at program startup to avoid
crashing.
## `0002-Disable-graphics-acceleration.patch`
Disable graphics acceleration
Disables SDL2 hardware acceleration as we don't support that.
## `0003-Use-pkgconfig-instead-of-find_package-to-look-for-de.patch`
Use pkgconfig instead of find_package() to look for dependencies
## `0004-Fix-a-header-include-path.patch`
Fix a header include path
## `0005-Remove-global-static-initializers.patch`
Remove global static initializers
|