Merge pull request #765 from kiwix/gss-symbols

Fix missing symbols on CoreKiwix.xcframework
This commit is contained in:
Kelson 2024-10-17 18:42:31 +02:00 committed by GitHub
commit dfe53e13e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class LibCurl(Dependency):
meson_archive = Remotefile(
"curl_8.4.0-2_patch.zip",
"bbb6ae75225c36ef9bb336cface729794c7c070c623a003fff40bd416042ff6e",
"https://public.kymeria.fr/KIWIX/curl_8.4.0-2_patch.zip",
"https://dev.kiwix.org/libkiwix/curl_8.4.0-2_patch.zip",
)
archives = [src_archive, meson_archive]
@ -32,6 +32,9 @@ class LibCurl(Dependency):
configure_options = [
f"-D{p}=disabled"
for p in (
"psl",
"kerberos-auth",
"gss-api",
"ssh",
"ssl",
"rtmp",