We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84b6565 commit 2c3bf6fCopy full SHA for 2c3bf6f
libc-test/build.rs
@@ -1987,6 +1987,10 @@ fn test_freebsd(target: &str) {
1987
Some(n) if n >= 13 => true,
1988
_ => false,
1989
};
1990
+ let freebsd14 = match freebsd_ver {
1991
+ Some(n) if n >= 14 => true,
1992
+ _ => false,
1993
+ };
1994
1995
headers! { cfg:
1996
"aio.h",
@@ -2074,6 +2078,7 @@ fn test_freebsd(target: &str) {
2074
2078
"sys/sysctl.h",
2075
2079
"sys/thr.h",
2076
2080
"sys/time.h",
2081
+ [freebsd14]:"sys/timerfd.h",
2077
2082
"sys/times.h",
2083
"sys/timex.h",
2084
"sys/types.h",
0 commit comments