Fixes for x11-rs/osmesa-sys conversion.

This commit is contained in:
Daggerbot 2015-04-11 18:17:49 -07:00
parent 2d20050b89
commit c9194e922e
3 changed files with 7 additions and 6 deletions

View file

@ -46,10 +46,10 @@ extern crate cocoa;
extern crate core_foundation;
#[cfg(target_os = "macos")]
extern crate glutin_core_graphics as core_graphics;
#[cfg(target_os = "linux")]
extern crate osmesa_sys;
#[cfg(target_os = "linux")]
#[cfg(any(target_os = "linux", target_os = "freebsd"))]
extern crate x11;
#[cfg(all(any(target_os = "linux", target_os = "freebsd"), feature="headless"))]
extern crate osmesa_sys;
pub use events::*;
#[cfg(feature = "headless")]