From d63e6be74a5e81d3f6bdbc5a84b8930b69ed53c8 Mon Sep 17 00:00:00 2001 From: David Carlier Date: Thu, 14 Oct 2021 18:02:43 +0100 Subject: openbsd omit few consts check as openbsd supports release N and N-1 for a while --- libc-test/build.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libc-test/build.rs b/libc-test/build.rs index 9377439e0f..d97285ca45 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -481,6 +481,8 @@ fn test_openbsd(target: &str) { match name { // Removed in OpenBSD 6.0 "KERN_USERMOUNT" | "KERN_ARND" => true, + // Good chance it's going to be wrong depending on the host release + "KERN_MAXID" | "NET_RT_MAXID" => true, _ => false, } }); -- cgit v1.2.1