We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e8bc1cf + 4ed612c commit 30a7425Copy full SHA for 30a7425
libc-test/build.rs
@@ -142,7 +142,6 @@ fn main() {
142
143
if !netbsd && !openbsd && !uclibc {
144
cfg.header("execinfo.h");
145
- cfg.header("xlocale.h");
146
}
147
148
if openbsd {
@@ -158,6 +157,7 @@ fn main() {
158
157
cfg.header("mach/mach_time.h");
159
cfg.header("malloc/malloc.h");
160
cfg.header("util.h");
+ cfg.header("xlocale.h");
161
cfg.header("sys/xattr.h");
162
cfg.header("sys/sys_domain.h");
163
if target.starts_with("x86") {
@@ -409,6 +409,7 @@ fn main() {
409
"ERROR_NOTHING_TO_TERMINATE" if mingw => true,
410
411
"SIG_IGN" => true, // sighandler_t weirdness
412
+ "SIGUNUSED" => true, // removed in glibc 2.26
413
414
// types on musl are defined a little differently
415
n if musl && n.contains("__SIZEOF_PTHREAD") => true,
0 commit comments