Fix this_platform_is_not_supported on OpenBSD.
I followed the steps of @mneumann.
This commit is contained in:
parent
366608d026
commit
74a28adba2
14 changed files with 22 additions and 15 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"))]
|
||||
#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))]
|
||||
|
||||
use Api;
|
||||
use ContextError;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ pub use self::platform::*;
|
|||
#[cfg(target_os = "windows")]
|
||||
#[path="windows/mod.rs"]
|
||||
mod platform;
|
||||
#[cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"))]
|
||||
#[cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))]
|
||||
#[path="linux/mod.rs"]
|
||||
mod platform;
|
||||
#[cfg(target_os = "macos")]
|
||||
|
|
@ -21,5 +21,5 @@ mod platform;
|
|||
|
||||
#[cfg(all(not(target_os = "ios"), not(target_os = "windows"), not(target_os = "linux"),
|
||||
not(target_os = "macos"), not(target_os = "android"), not(target_os = "dragonfly"),
|
||||
not(target_os = "freebsd"), not(target_os = "emscripten")))]
|
||||
not(target_os = "freebsd"), not(target_os = "openbsd"), not(target_os = "emscripten")))]
|
||||
use this_platform_is_not_supported;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue