This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
86 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,3 @@ | |
/*.AppImage | ||
/core* | ||
/qemu_* | ||
/cmake/.prebuilt-armhf-toolchain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
[submodule "dependencies/libpng/src"] | ||
path = dependencies/libpng/src | ||
url = https://github.com/glennrp/libpng.git | ||
url = https://gitea.thebrokenrail.com/minecraft-pi-reborn/libpng.git | ||
[submodule "dependencies/zlib/src"] | ||
path = dependencies/libpng/zlib/src | ||
url = https://github.com/madler/zlib.git | ||
ignore = dirty | ||
[submodule "dependencies/glfw/src"] | ||
path = media-layer/core/dependencies/glfw/src | ||
url = https://github.com/glfw/glfw.git | ||
[submodule "dependencies/zenity/src"] | ||
path = dependencies/zenity/src | ||
url = https://gitea.thebrokenrail.com/TheBrokenRail/zenity.git | ||
url = https://gitea.thebrokenrail.com/minecraft-pi-reborn/zenity.git | ||
[submodule "launcher/dependencies/patchelf/src"] | ||
path = launcher/dependencies/patchelf/src | ||
url = https://github.com/NixOS/patchelf.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.4.3-1 | ||
2.4.3-2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Read Hex Data | ||
file(READ "${EMBED_IN}" data HEX) | ||
|
||
# Convert Hex Data For C Compatibility | ||
string(REGEX REPLACE "([0-9a-f][0-9a-f])" "0x\\1," data "${data}") | ||
|
||
# Get C Name | ||
get_filename_component(name "${EMBED_IN}" NAME) | ||
string(MAKE_C_IDENTIFIER "${name}" name) | ||
|
||
# Write Data | ||
file(WRITE "${EMBED_OUT}" "#include <stddef.h>\nconst unsigned char ${name}[] = {${data}};\nconst size_t ${name}_len = sizeof (${name});\n") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule src
updated
from 5bb5bf to 6c4455
Submodule src
updated
from d673e9 to 27cd9e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule src
updated
8 files
+6 −0 | .github/dependabot.yml | |
+3 −3 | .github/workflows/ci.yml | |
+8 −8 | .github/workflows/publish.yml | |
+0 −160 | README.md | |
+9 −0 | configure.ac | |
+53 −0 | m4/ax_check_compile_flag.m4 | |
+2 −2 | patchelf.1 | |
+1 −1 | version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters