Skip to content

Commit

Permalink
openssl-sys: add LibreSSL 3.6.0 to cfgs
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwin committed Dec 20, 2022
1 parent d780a8f commit e01fbac
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions openssl-sys/build/cfgs.rs
Expand Up @@ -43,6 +43,9 @@ pub fn get(openssl_version: Option<u64>, libressl_version: Option<u64>) -> Vec<&
if libressl_version >= 0x3_05_00_00_0 {
cfgs.push("libressl350");
}
if libressl_version >= 0x3_06_00_00_0 {
cfgs.push("libressl360");
}
if libressl_version >= 0x3_07_00_00_0 {
cfgs.push("libressl370");
}
Expand Down

0 comments on commit e01fbac

Please sign in to comment.