diff options
author | Kirill Zdornyy <kirill@dineserve.com> | 2016-03-01 18:06:13 -0800 |
---|---|---|
committer | Kirill Zdornyy <kirill@dineserve.com> | 2016-03-01 18:06:13 -0800 |
commit | 74a28adba2a07d56bce9592f24196442192e68e0 (patch) | |
tree | d1d0075f4e4f60015c021da70b6eabf67313f37d /src/os | |
parent | 366608d026b7bcdb2b7478e932b0776ad0b51531 (diff) | |
download | glutin-74a28adba2a07d56bce9592f24196442192e68e0.tar.gz glutin-74a28adba2a07d56bce9592f24196442192e68e0.zip |
Fix this_platform_is_not_supported on OpenBSD.
I followed the steps of @mneumann.
Diffstat (limited to 'src/os')
-rw-r--r-- | src/os/unix.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix.rs b/src/os/unix.rs index f42b3c6..61c89bc 100644 --- a/src/os/unix.rs +++ b/src/os/unix.rs @@ -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 libc; use Window; |