diff options
Diffstat (limited to 'libc-test')
-rw-r--r-- | libc-test/Cargo.toml | 4 | ||||
-rw-r--r-- | libc-test/build.rs | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml index 2869dcdad5..b747e1a26c 100644 --- a/libc-test/Cargo.toml +++ b/libc-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc-test" -version = "0.2.111" +version = "0.2.112" authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" build = "build.rs" @@ -12,7 +12,7 @@ A test crate for the libc crate. [dependencies.libc] path = ".." -version = "0.2.111" +version = "0.2.112" default-features = false [build-dependencies] diff --git a/libc-test/build.rs b/libc-test/build.rs index c9f3211063..c55a997c97 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -2308,6 +2308,9 @@ fn test_freebsd(target: &str) { ("kinfo_proc", "ki_tdaddr") => true, ("kinfo_proc", "ki_pd") => true, + // Anonymous type. + ("filestat", "next") => true, + // We ignore this field because we needed to use a hack in order to make rust 1.19 // happy... ("kinfo_proc", "ki_sparestrings") => true, |