diff options
| author | konodin <konodin@posteo.net> | 2026-01-08 23:07:01 +0100 |
|---|---|---|
| committer | konodin <konodin@posteo.net> | 2026-01-08 23:07:01 +0100 |
| commit | 9b5090352e9c9e64708769e70660d3bc6df3f28a (patch) | |
| tree | b55bcffadd94cc084b09e98e249aef61e5377aaa | |
| parent | f9d9166ff11f3b6eeedb4355dfa930d69c40be8a (diff) | |
Link Curl the same for all UNIX oses
| -rw-r--r-- | vendor/curl/curl.odin | 8 |
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", } } |