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.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs
index 5bad58171c..c60bd1c917 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -2182,6 +2182,7 @@ fn test_freebsd(target: &str) {
// Added in FreeBSD 14.
"PT_COREDUMP" | "PC_ALL" | "PC_COMPRESS" | "PT_GETREGSET" | "PT_SETREGSET"
+ | "PT_SC_REMOTE"
if Some(14) > freebsd_ver =>
{
true
@@ -2269,6 +2270,8 @@ fn test_freebsd(target: &str) {
// `ptrace_coredump` introduced in FreeBSD 14.
"ptrace_coredump" if Some(14) > freebsd_ver => true,
+ // `ptrace_sc_remote` introduced in FreeBSD 14.
+ "ptrace_sc_remote" if Some(14) > freebsd_ver => true,
// `sockcred2` is not available in FreeBSD 12.
"sockcred2" if Some(13) > freebsd_ver => true,