aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkonodin <konodin@posteo.net>2026-01-08 23:07:01 +0100
committerkonodin <konodin@posteo.net>2026-01-08 23:07:01 +0100
commit9b5090352e9c9e64708769e70660d3bc6df3f28a (patch)
treeb55bcffadd94cc084b09e98e249aef61e5377aaa
parentf9d9166ff11f3b6eeedb4355dfa930d69c40be8a (diff)
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",
}
}