diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2014-08-03 18:39:00 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2014-08-03 18:39:00 +0200 |
commit | 752c721ae1337e770512cd7d01e0b5ec7eff6d00 (patch) | |
tree | 84344e1c9c1008a8dffd0ca7af96574901a2933d | |
parent | d574f6f1bbcdcc93649fe9daa18106a3cae61ef6 (diff) | |
parent | f1993be9eae49ad9a1d5e8e8d2b3749ad4379a70 (diff) | |
download | glutin-752c721ae1337e770512cd7d01e0b5ec7eff6d00.tar.gz glutin-752c721ae1337e770512cd7d01e0b5ec7eff6d00.zip |
Merge pull request #13 from pnkfelix/fsk-fix-osx-dummy-impl
Fix bugs in OS X dummy impl
-rw-r--r-- | src/lib.rs | 4 | ||||
-rw-r--r-- | src/osx/mod.rs | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -23,8 +23,10 @@ pub use events::*; #[cfg(windows)] use winimpl = win32; -#[cfg(unix)] +#[cfg(target_os = "linux")] use winimpl = x11; +#[cfg(target_os = "macos")] +use winimpl = osx; #[cfg(target_os = "win32")] mod win32; diff --git a/src/osx/mod.rs b/src/osx/mod.rs index dcf714b..f846cf4 100644 --- a/src/osx/mod.rs +++ b/src/osx/mod.rs @@ -1,6 +1,6 @@ //! Dummy implementation for OS/X to make gl-init-rs compile on this platform -use WindowBuilder; +use {Event, WindowBuilder}; pub struct Window; |