Home
last modified time | relevance | path

Searched refs:libressl_version (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl-sys/build/
Dcfgs.rs2 pub fn get(openssl_version: Option<u64>, libressl_version: Option<u64>) -> Vec<&'static str> { in get()
5 if let Some(libressl_version) = libressl_version { in get()
8 if libressl_version >= 0x2_05_01_00_0 { in get()
11 if libressl_version >= 0x2_05_02_00_0 { in get()
14 if libressl_version >= 0x2_06_01_00_0 { in get()
17 if libressl_version >= 0x2_07_00_00_0 { in get()
20 if libressl_version >= 0x2_07_01_00_0 { in get()
23 if libressl_version >= 0x2_07_03_00_0 { in get()
26 if libressl_version >= 0x2_08_00_00_0 { in get()
29 if libressl_version >= 0x2_08_01_00_0 { in get()
[all …]
Dmain.rs193 let mut libressl_version = None; in validate_headers() localVariable
208 libressl_version = Some(parse_version(version)); in validate_headers()
231 for cfg in cfgs::get(openssl_version, libressl_version) { in validate_headers()
235 if let Some(libressl_version) = libressl_version { in validate_headers()
236 println!("cargo:libressl_version_number={:x}", libressl_version); in validate_headers()
238 let major = (libressl_version >> 28) as u8; in validate_headers()
239 let minor = (libressl_version >> 20) as u8; in validate_headers()
240 let fix = (libressl_version >> 12) as u8; in validate_headers()
/third_party/rust/crates/rust-openssl/systest/
Dbuild.rs35 let libressl_version = env::var("DEP_OPENSSL_LIBRESSL_VERSION_NUMBER") in main() localVariable
41 for c in cfgs::get(openssl_version, libressl_version) { in main()
72 if libressl_version.is_some() { in main()