Fix this_platform_is_not_supported on OpenBSD.

I followed the steps of @mneumann.
This commit is contained in:
Kirill Zdornyy 2016-03-01 18:06:13 -08:00
parent 366608d026
commit 74a28adba2
14 changed files with 22 additions and 15 deletions

View file

@ -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;