mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-09-03 03:14:44 +02:00
### Description of Changes Updated a number of dependencies and third-party libraries to newer versions / commits. ## **Deps:** * libpng `v1.6.56` -> `v1.6.58` * harfbuzz `14.0.0` -> `14.2.0` * agilitysdk `1.619.1` -> `1.619.2` * rapidyaml `v0.11.1` -> `v0.12.1` * shaderc `2026.1` -> `2026.2` ## **3rdparty:** * vixl `e6076e9` -> `3fe1686` * cubeb `e495bee` -> `6ad18e2` * xbyak `v7.35.2` -> `v7.37` * CPUInfo `7364b49` -> `3681f0c` * LZMA/7zipSDK `25.00` -> `26.01` * fast_float `v8.1.0` -> `v8.2.5` ### Rationale behind Changes Security fixes and improvements are good ### Suggested Testing Steps Test everything (yaml, png, vulkan, cpu information in osd, audio etc) ### Did you use AI to help find, test, or implement this issue or feature? Nah. --------- Signed-off-by: SternXD <stern@sidestore.io>
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "libpng",
|
|
"buildsystem": "cmake-ninja",
|
|
"builddir": true,
|
|
"config-opts": [
|
|
"-DPNG_TESTS=OFF",
|
|
"-DPNG_STATIC=OFF",
|
|
"-DPNG_SHARED=ON",
|
|
"-DPNG_TOOLS=OFF"
|
|
],
|
|
"build-options": {
|
|
"strip": true
|
|
},
|
|
"sources": [
|
|
{
|
|
"type": "archive",
|
|
"url": "https://downloads.sourceforge.net/project/libpng/libpng16/1.6.58/libpng-1.6.58.tar.xz",
|
|
"sha256": "28eb403f51f0f7405249132cecfe82ea5c0ef97f1b32c5a65828814ae0d34775"
|
|
},
|
|
{
|
|
"type": "file",
|
|
"url": "https://download.sourceforge.net/libpng-apng/libpng-1.6.58-apng.patch.gz",
|
|
"dest-filename": "libpng-1.6.58-apng.patch.gz",
|
|
"sha256": "eee7dea22ed502868017971c86c63c4ed1e6085de0baebfdcc3d3322f00f3eb0"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"commands":
|
|
[
|
|
"gunzip -f libpng-1.6.58-apng.patch.gz",
|
|
"patch -p1 < \"libpng-1.6.58-apng.patch\""
|
|
]
|
|
}
|
|
],
|
|
"cleanup": [
|
|
"/bin",
|
|
"/include",
|
|
"/lib/*.a",
|
|
"/lib/*.la",
|
|
"/lib/cmake",
|
|
"/lib/libpng",
|
|
"/lib/pkgconfig",
|
|
"/share/man"
|
|
]
|
|
}
|
|
|