diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2016-03-02 06:42:13 +0100 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2016-03-02 06:42:13 +0100 |
commit | 2638db665afc175cf128c3e25bc883f4c114bb5a (patch) | |
tree | d1d0075f4e4f60015c021da70b6eabf67313f37d /src/api/x11 | |
parent | 366608d026b7bcdb2b7478e932b0776ad0b51531 (diff) | |
parent | 74a28adba2a07d56bce9592f24196442192e68e0 (diff) | |
download | glutin-2638db665afc175cf128c3e25bc883f4c114bb5a.tar.gz glutin-2638db665afc175cf128c3e25bc883f4c114bb5a.zip |
Merge pull request #732 from zkirill/master
Fix this_platform_is_not_supported on OpenBSD.
Diffstat (limited to 'src/api/x11')
-rw-r--r-- | src/api/x11/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/x11/mod.rs b/src/api/x11/mod.rs index 54626fe..3dc31b5 100644 --- a/src/api/x11/mod.rs +++ b/src/api/x11/mod.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"))] pub use self::monitor::{MonitorId, get_available_monitors, get_primary_monitor}; pub use self::window::{Window, XWindow, PollEventsIterator, WaitEventsIterator, Context, WindowProxy}; |