diff options
author | Michael Neumann <mneumann@ntecs.de> | 2016-12-04 12:46:17 +0100 |
---|---|---|
committer | Michael Neumann <mneumann@ntecs.de> | 2016-12-04 12:46:17 +0100 |
commit | 09bff052a92ed05109b90ac9ac6554c2a16ee30c (patch) | |
tree | 3f2d4cb569ba8d251e12ef74fb9790643c974902 /libc-test | |
parent | b9dad06f8c4173c6ffe821945745bdbb9d165676 (diff) | |
download | rust-libc-09bff052a92ed05109b90ac9ac6554c2a16ee30c.tar.gz |
Include aio.h on DragonFly as well
Diffstat (limited to 'libc-test')
-rw-r--r-- | libc-test/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs index 7b241dcb73..7fa086597d 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -216,7 +216,7 @@ fn main() { cfg.header("sys/ioctl_compat.h"); } - if linux || freebsd || netbsd || apple { + if linux || freebsd || dragonfly || netbsd || apple { cfg.header("aio.h"); } |