diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-08-30 14:35:47 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-08-30 14:35:47 +0200 |
commit | 9d6d2412c7fc7c26574e91a8dc981eaecaa49542 (patch) | |
tree | bd9b70c965bd0edbf2a96c1be7ecc4c440488c87 /src/api/glx | |
parent | b8b1b80631e1335a7ab747f34e1c67dfa0790a10 (diff) | |
parent | b707959c2c0ae97c2225c2e6dbc07fc754125458 (diff) | |
download | glutin-9d6d2412c7fc7c26574e91a8dc981eaecaa49542.tar.gz glutin-9d6d2412c7fc7c26574e91a8dc981eaecaa49542.zip |
Merge pull request #589 from mneumann/dragonfly2
Make it work on DragonFly/FreeBSD
Diffstat (limited to 'src/api/glx')
-rw-r--r-- | src/api/glx/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/glx/mod.rs b/src/api/glx/mod.rs index 72bdf03..0b2cf9f 100644 --- a/src/api/glx/mod.rs +++ b/src/api/glx/mod.rs @@ -1,4 +1,4 @@ -#![cfg(all(target_os = "linux", feature = "window"))] +#![cfg(all(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"), feature = "window"))] use BuilderAttribs; use ContextError; |