summaryrefslogtreecommitdiff
path: root/libc-test/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'libc-test/build.rs')
-rw-r--r--libc-test/build.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs
index 3534579425..4e67c6eb5d 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -240,6 +240,7 @@ fn test_apple(target: &str) {
"pthread.h",
"pthread_spis.h",
"pthread/introspection.h",
+ "pthread/spawn.h",
"pthread/stack_np.h",
"pwd.h",
"regex.h",
@@ -2274,6 +2275,10 @@ fn test_freebsd(target: &str) {
// Added in FreeBSD 14
"IFCAP_NV" if Some(14) > freebsd_ver => true,
+ // Removed in https://reviews.freebsd.org/D38574 and https://reviews.freebsd.org/D38822
+ // We maybe should deprecate them once a stable release ships them.
+ "IP_BINDMULTI" | "IP_RSS_LISTEN_BUCKET" => true,
+
_ => false,
}
});