Skip to content

Commit

Permalink
curl 8.12.0 !macos !ios !js
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiredPlanck committed Feb 6, 2025
1 parent 330232b commit da68323
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,6 @@
[submodule "openssl"]
path = openssl
url = https://github.com/openssl/openssl.git
[submodule "curl"]
path = curl
url = https://github.com/curl/curl.git
1 change: 1 addition & 0 deletions curl
Submodule curl added at 34cf9d
11 changes: 11 additions & 0 deletions scripts/curl.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

from common import CMakeBuilder

project = 'curl'

CMakeBuilder(project, [
'-DCURL_CA_BUNDLE="/etc/ssl/certs/cacert.pem"',
'-DCURL_CA_PATH="/etc/ssl/certs/"',
'-DCURL_ZSTD=ON',
'-DENABLE_WEBSOCKETS=ON'
]).exec()
3 changes: 2 additions & 1 deletion scripts/dependencies.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
dag = {
'curl': ['openssl', 'zstd'],
'glib': ['pcre2'],
'json-glib': ['glib'],
'libgee': ['glib'],
Expand Down Expand Up @@ -58,13 +59,13 @@

harmony = [
'boost',
'curl',
'ecm',
'fmt',
'libintl',
'lua',
'marisa',
'opencc',
'openssl',
'zstd'
]

Expand Down

0 comments on commit da68323

Please sign in to comment.