aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/egl/ffi.rs
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2016-03-02 06:42:13 +0100
committertomaka <pierre.krieger1708@gmail.com>2016-03-02 06:42:13 +0100
commit2638db665afc175cf128c3e25bc883f4c114bb5a (patch)
treed1d0075f4e4f60015c021da70b6eabf67313f37d /src/api/egl/ffi.rs
parent366608d026b7bcdb2b7478e932b0776ad0b51531 (diff)
parent74a28adba2a07d56bce9592f24196442192e68e0 (diff)
downloadglutin-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/egl/ffi.rs')
-rw-r--r--src/api/egl/ffi.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/egl/ffi.rs b/src/api/egl/ffi.rs
index ae02e30..9ed32c8 100644
--- a/src/api/egl/ffi.rs
+++ b/src/api/egl/ffi.rs
@@ -33,5 +33,5 @@ pub type EGLNativeWindowType = winapi::HWND;
pub type EGLNativeWindowType = *const libc::c_void;
#[cfg(target_os = "android")]
pub type EGLNativeWindowType = *const libc::c_void;
-#[cfg(any(target_os = "dragonfly", target_os = "freebsd"))]
+#[cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))]
pub type EGLNativeWindowType = *const libc::c_void;