From 9b97095acc13ba52164eb1d00a0c044ec28d9978 Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Sat, 21 Sep 2019 14:45:07 +0200 Subject: Skip max_align_t in FreeBSD10 --- libc-test/build.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libc-test/build.rs b/libc-test/build.rs index 73ac02decb..d6982fc952 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -1646,6 +1646,9 @@ fn test_freebsd(target: &str) { // `mmsghdr` is not available in FreeBSD 10 "mmsghdr" if Some(10) == freebsd_ver => true, + // `max_align_t` is not available in FreeBSD 10 + "max_align_t" if Some(10) == freebsd_ver => true, + _ => false, } }); -- cgit v1.2.1