diff options
author | Michael Neumann <mneumann@ntecs.de> | 2015-08-29 22:54:17 +0200 |
---|---|---|
committer | Michael Neumann <mneumann@ntecs.de> | 2015-08-30 13:52:09 +0200 |
commit | b707959c2c0ae97c2225c2e6dbc07fc754125458 (patch) | |
tree | bd9b70c965bd0edbf2a96c1be7ecc4c440488c87 /src/api/egl | |
parent | b8b1b80631e1335a7ab747f34e1c67dfa0790a10 (diff) | |
download | glutin-b707959c2c0ae97c2225c2e6dbc07fc754125458.tar.gz glutin-b707959c2c0ae97c2225c2e6dbc07fc754125458.zip |
Make it work on DragonFly/FreeBSD
Tested on DragonFly BSD. Should work similarily on FreeBSD.
Diffstat (limited to 'src/api/egl')
-rw-r--r-- | src/api/egl/ffi.rs | 2 | ||||
-rw-r--r-- | src/api/egl/mod.rs | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/api/egl/ffi.rs b/src/api/egl/ffi.rs index 6a81ada..ae02e30 100644 --- a/src/api/egl/ffi.rs +++ b/src/api/egl/ffi.rs @@ -33,3 +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"))] +pub type EGLNativeWindowType = *const libc::c_void; diff --git a/src/api/egl/mod.rs b/src/api/egl/mod.rs index 32902e5..4cd7a7c 100644 --- a/src/api/egl/mod.rs +++ b/src/api/egl/mod.rs @@ -1,4 +1,5 @@ -#![cfg(any(target_os = "windows", target_os = "linux", target_os = "android"))] +#![cfg(any(target_os = "windows", target_os = "linux", target_os = "android", + target_os = "dragonfly", target_os = "freebsd"))] #![allow(unused_variables)] use BuilderAttribs; |