aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2026-01-09 11:57:15 +0000
committerGitHub <noreply@github.com>2026-01-09 11:57:15 +0000
commitb03befb604cfa400f76c3144323e3e69b8251ab9 (patch)
tree73177501fab07401b7c8fe4db3fe8a058f0a60b5
parent24f4dda0700c1c30bd3ce3352914827caf7f2c64 (diff)
parent9b5090352e9c9e64708769e70660d3bc6df3f28a (diff)
Merge pull request #6117 from konodin/generic-curl-linking
Link Curl the same for all UNIX oses
-rw-r--r--vendor/curl/curl.odin8
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/curl/curl.odin b/vendor/curl/curl.odin
index ce10c443f..41ecbcb75 100644
--- a/vendor/curl/curl.odin
+++ b/vendor/curl/curl.odin
@@ -14,23 +14,23 @@ when ODIN_OS == .Windows {
"system:Ws2_32.lib",
"system:iphlpapi.lib",
}
-} else when ODIN_OS == .Linux {
+} else when ODIN_OS == .Darwin {
@(export)
foreign import lib {
"system:curl",
- "system:mbedtls",
"system:mbedx509",
"system:mbedcrypto",
"system:z",
+ "system:SystemConfiguration.framework",
}
-} else when ODIN_OS == .Darwin {
+} else {
@(export)
foreign import lib {
"system:curl",
+ "system:mbedtls",
"system:mbedx509",
"system:mbedcrypto",
"system:z",
- "system:SystemConfiguration.framework",
}
}