]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #22792 - semarie:openbsd-unbreak-nacl, r=alexcrichton
authorManish Goregaokar <manishsmail@gmail.com>
Wed, 25 Feb 2015 04:57:30 +0000 (10:27 +0530)
committerManish Goregaokar <manishsmail@gmail.com>
Wed, 25 Feb 2015 04:57:30 +0000 (10:27 +0530)
commit1c97ac3d12074568269d34018ca254ae44fe40b9
tree882e7473457d69be10fc17009352f89181cc0e5c
parent3a49c3bd9c6fec52574fdc7b7e00cbfa76f29e7d
parent91e00f3bfa1166665700a0c12f1697fbe74cddf8
Rollup merge of #22792 - semarie:openbsd-unbreak-nacl, r=alexcrichton

 The recent commit on liblibc for nacl break the compilation for OpenBSD (and Bitrig too, I think).

The problem is `ino_t` come from another block too now. This patch remove the extra declaration.

```
.../src/liblibc/lib.rs:98:9: 98:37 error: a type named `ino_t` has already been imported in this module [E0251]
.../src/liblibc/lib.rs:98 pub use types::os::arch::posix01::*;
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: aborting due to previous error
```

@dhuseby do you have this problem too ? and if yes, does this patch correct it ?