mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
Announce: https://blog.rust-lang.org/2025/04/03/Rust-1.86.0.html ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.86.0 Put back rustdoc in _RUST_TOOLS, rustdoc is an integral part of cargo and has no connection with DOCS. PR: 285381,285840 Tested by: mikael,pkubaj
18 lines
481 B
Rust
18 lines
481 B
Rust
--- vendor/git2-0.20.0/src/lib.rs.orig 2025-02-21 20:02:44 UTC
|
|
+++ vendor/git2-0.20.0/src/lib.rs
|
|
@@ -759,6 +759,7 @@ fn init() {
|
|
unix,
|
|
not(target_os = "macos"),
|
|
not(target_os = "ios"),
|
|
+ not(target_os = "freebsd"),
|
|
feature = "https"
|
|
))]
|
|
fn openssl_env_init() {
|
|
@@ -880,6 +881,7 @@ fn openssl_env_init() {
|
|
windows,
|
|
target_os = "macos",
|
|
target_os = "ios",
|
|
+ target_os = "freebsd",
|
|
not(feature = "https")
|
|
))]
|
|
fn openssl_env_init() {}
|