-
-
Notifications
You must be signed in to change notification settings - Fork 759
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rebuild openssl-sys if the underlying openssl has changed #2157
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,11 @@ fn main() { | |
let target = env::var("TARGET").unwrap(); | ||
|
||
let (lib_dirs, include_dir) = find_openssl(&target); | ||
let mut ossl_include_dir = include_dir.clone(); | ||
ossl_include_dir.push("openssl"); | ||
if let Some(printable_include) = ossl_include_dir.to_str() { | ||
println!("cargo:rerun-if-changed={}", printable_include); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've considered doing something like this before, but I think it's a bit dangerous. With this specific setup, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've updated the PR to use |
||
|
||
if !lib_dirs.iter().all(|p| Path::new(p).exists()) { | ||
panic!("OpenSSL library directory does not exist: {:?}", lib_dirs); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can just be
let ossl_include_dir = include_dir.join("openssl");
as far as I can tell