From 53e79b886bf4e4d3682ae6669e3585b3586e5255 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Sun, 5 Dec 2021 17:30:54 +0100 Subject: [PATCH] Fix invalid freebsd version selection --- build.rs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/build.rs b/build.rs index 61acba646dca0..39eeb3b785e7f 100644 --- a/build.rs +++ b/build.rs @@ -25,13 +25,11 @@ fn main() { // On CI, we detect the actual FreeBSD version and match its ABI exactly, // running tests to ensure that the ABI is correct. match which_freebsd() { - Some(10) if libc_ci || rustc_dep_of_std => { - println!("cargo:rustc-cfg=freebsd10") - } - Some(11) if libc_ci => println!("cargo:rustc-cfg=freebsd11"), - Some(12) if libc_ci => println!("cargo:rustc-cfg=freebsd12"), - Some(13) if libc_ci => println!("cargo:rustc-cfg=freebsd13"), - Some(14) if libc_ci => println!("cargo:rustc-cfg=freebsd14"), + Some(10) => println!("cargo:rustc-cfg=freebsd10"), + Some(11) => println!("cargo:rustc-cfg=freebsd11"), + Some(12) => println!("cargo:rustc-cfg=freebsd12"), + Some(13) => println!("cargo:rustc-cfg=freebsd13"), + Some(14) => println!("cargo:rustc-cfg=freebsd14"), Some(_) | None => println!("cargo:rustc-cfg=freebsd11"), }