From 1451f19067869f354a1b07e27c14c96506ece3f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Marie?= Date: Sun, 13 Jan 2019 09:06:05 +0100 Subject: [PATCH] mincore has been removed from OpenBSD 6.5 --- libc-test/build.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libc-test/build.rs b/libc-test/build.rs index 99c67f38b4b03..7606800afb9cd 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -857,6 +857,10 @@ fn main() { // to be removed now "system" | "ptrace" if ios => true, + // Removed in OpenBSD 6.5 + // https://marc.info/?l=openbsd-cvs&m=154723400730318 + "mincore" if openbsd => true, + _ => false, } });