Update build.rs

This commit is contained in:
ssrlive 2022-12-22 21:05:48 +08:00 committed by GitHub
parent 646c9c122b
commit 8785bd903a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,8 +185,7 @@ mod build_bundled {
// Windows without `-vendored-openssl` takes this to link against a prebuilt // Windows without `-vendored-openssl` takes this to link against a prebuilt
// OpenSSL lib // OpenSSL lib
cfg.include(inc_dir.to_string_lossy().as_ref()); cfg.include(inc_dir.to_string_lossy().as_ref());
let lib = lib_dir.join("libcrypto.lib"); println!("cargo:rustc-link-lib=dylib=libcrypto");
cfg.flag(lib.to_string_lossy().as_ref());
} else if use_openssl { } else if use_openssl {
cfg.include(inc_dir.to_string_lossy().as_ref()); cfg.include(inc_dir.to_string_lossy().as_ref());
// branch not taken on Windows, just `crypto` is fine. // branch not taken on Windows, just `crypto` is fine.