Skip to content
Snippets Groups Projects
Commit 6f170efd authored by SilverWingedSeraph's avatar SilverWingedSeraph
Browse files

Prevent testing linux/if.h definitions on musl targets

parent 121795e3
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ fn main() {
cfg.header("sys/mman.h");
cfg.header("sys/resource.h");
cfg.header("sys/socket.h");
if linux {
if linux && !musl {
cfg.header("linux/if.h");
}
cfg.header("sys/time.h");
......@@ -665,8 +665,10 @@ fn main() {
} else {
cfg.header("linux/fcntl.h");
}
cfg.header("net/if.h");
cfg.header("linux/if.h");
if !musl {
cfg.header("net/if.h");
cfg.header("linux/if.h");
}
cfg.header("linux/quota.h");
cfg.skip_const(move |name| {
match name {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment