Skip to content

Commit 6275bac

Browse files
committed
Auto merge of #3134 - JohnTitor:ignore-some-IP_BIND-freebsd, r=JohnTitor
Ignore some removed `IP_*` consts on FreeBSD
2 parents 2bafdcf + 0af51c6 commit 6275bac

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

libc-test/build.rs

+4
Original file line numberDiff line numberDiff line change
@@ -2271,6 +2271,10 @@ fn test_freebsd(target: &str) {
22712271
// Added in FreeBSD 14
22722272
"IFCAP_NV" if Some(14) > freebsd_ver => true,
22732273

2274+
// Removed in https://reviews.freebsd.org/D38574 and https://reviews.freebsd.org/D38822
2275+
// We maybe should deprecate them once a stable release ships them.
2276+
"IP_BINDMULTI" | "IP_RSS_LISTEN_BUCKET" => true,
2277+
22742278
_ => false,
22752279
}
22762280
});

0 commit comments

Comments
 (0)