Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cloudflare/boring
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6fb6a1e14a5ec7a95daa64847ac205caaae235d0
Choose a base ref
..
head repository: cloudflare/boring
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 83055ff0dcf6f88f58a642902b53d2592d74382e
Choose a head ref
Showing with 0 additions and 6 deletions.
  1. +0 −6 boring-sys/build/main.rs
6 changes: 0 additions & 6 deletions boring-sys/build/main.rs
Original file line number Diff line number Diff line change
@@ -624,16 +624,10 @@ fn main() {
let config = Config::from_env();

if let Some(ref cplus_include_path) = config.env.cplus_include_path {
println!(
"Setting CPLUS_INCLUDE_PATH to {}",
cplus_include_path.display()
);
// Inject CPLUS_INCLUDE_PATH into the environment for the build.
// This must be done before we build the boring source path so that it can
// be used during that build process.
std::env::set_var("CPLUS_INCLUDE_PATH", cplus_include_path);
} else {
println!("Didn't set CPLUS_INCLUDE_PATH");
}

let bssl_dir = built_boring_source_path(&config);