From 5872135f9d3d237dec44c7b5758895ca58fa1c2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Marie?= Date: Wed, 17 Aug 2022 06:37:58 +0000 Subject: [PATCH] openbsd: ignore ci error about unexistent KERN_NSELCOLL constant This sysctl(2) constant has been removed. https://github.com/openbsd/src/commit/9bf42e341afcf2dd868da323254a70b8eb9463cf --- libc-test/build.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libc-test/build.rs b/libc-test/build.rs index 712b239ef8e35..4b34ae67bac3b 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -491,6 +491,8 @@ fn test_openbsd(target: &str) { match name { // Removed in OpenBSD 6.0 "KERN_USERMOUNT" | "KERN_ARND" => true, + // Removed in OpenBSD 7.2 + "KERN_NSELCOLL" => true, // Good chance it's going to be wrong depending on the host release "KERN_MAXID" | "NET_RT_MAXID" => true, "EV_SYSFLAGS" => true,