aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2014-10-24 12:31:33 +0200
committertomaka <pierre.krieger1708@gmail.com>2014-10-24 12:31:33 +0200
commit2c9eaf86512a77da5f20acc87d9c5cd949078a85 (patch)
tree9afb2be42ba29021699d5b2611be0cd4e11e53cb /src/lib.rs
parentfe8646c55681d6ecbd290010ab702f8f0feecc00 (diff)
parent97c471dc05b2b9c928758ae23f2f8cafd9d36dda (diff)
downloadglutin-2c9eaf86512a77da5f20acc87d9c5cd949078a85.tar.gz
glutin-2c9eaf86512a77da5f20acc87d9c5cd949078a85.zip
Merge pull request #65 from glennw/x-threads
Add an interface for providing system wide initialization options to the windowing system.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 868d4c0..da92cc2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -37,6 +37,8 @@ extern crate libc;
extern crate cocoa;
#[cfg(target_os = "macos")]
extern crate core_foundation;
+#[cfg(target_os = "linux")]
+extern crate sync;
pub use events::*;