Prevent testing linux/if.h definitions on musl targets
This commit is contained in:
parent
121795e34c
commit
6f170efdcf
@ -91,7 +91,7 @@ fn main() {
|
|||||||
cfg.header("sys/mman.h");
|
cfg.header("sys/mman.h");
|
||||||
cfg.header("sys/resource.h");
|
cfg.header("sys/resource.h");
|
||||||
cfg.header("sys/socket.h");
|
cfg.header("sys/socket.h");
|
||||||
if linux {
|
if linux && !musl {
|
||||||
cfg.header("linux/if.h");
|
cfg.header("linux/if.h");
|
||||||
}
|
}
|
||||||
cfg.header("sys/time.h");
|
cfg.header("sys/time.h");
|
||||||
@ -665,8 +665,10 @@ fn main() {
|
|||||||
} else {
|
} else {
|
||||||
cfg.header("linux/fcntl.h");
|
cfg.header("linux/fcntl.h");
|
||||||
}
|
}
|
||||||
|
if !musl {
|
||||||
cfg.header("net/if.h");
|
cfg.header("net/if.h");
|
||||||
cfg.header("linux/if.h");
|
cfg.header("linux/if.h");
|
||||||
|
}
|
||||||
cfg.header("linux/quota.h");
|
cfg.header("linux/quota.h");
|
||||||
cfg.skip_const(move |name| {
|
cfg.skip_const(move |name| {
|
||||||
match name {
|
match name {
|
||||||
|
Loading…
Reference in New Issue
Block a user