diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-07-22 18:56:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-22 18:56:08 +0000 |
commit | a23b372f34c58710678b888addcda2e3b7d45111 (patch) | |
tree | ef5fc1f4caf9d11f267c307ad7a128a1439eddb4 /alacritty_terminal/src | |
parent | 76dd84bef87f77c67bf5c23ee627163e93786b5d (diff) | |
download | r-alacritty-a23b372f34c58710678b888addcda2e3b7d45111.tar.gz r-alacritty-a23b372f34c58710678b888addcda2e3b7d45111.tar.bz2 r-alacritty-a23b372f34c58710678b888addcda2e3b7d45111.zip |
Fix NetBSD build failure
Fixes #2631.
Diffstat (limited to 'alacritty_terminal/src')
-rw-r--r-- | alacritty_terminal/src/window.rs | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/alacritty_terminal/src/window.rs b/alacritty_terminal/src/window.rs index 360cda87..47828ac8 100644 --- a/alacritty_terminal/src/window.rs +++ b/alacritty_terminal/src/window.rs @@ -337,12 +337,7 @@ impl Window { } } - #[cfg(any( - target_os = "linux", - target_os = "freebsd", - target_os = "dragonfly", - target_os = "openbsd" - ))] + #[cfg(not(any(target_os = "macos", windows)))] pub fn set_urgent(&self, is_urgent: bool) { self.window().set_urgent(is_urgent); } @@ -420,20 +415,10 @@ pub trait OsExtensions { fn run_os_extensions(&self) {} } -#[cfg(not(any( - target_os = "linux", - target_os = "freebsd", - target_os = "dragonfly", - target_os = "openbsd" -)))] +#[cfg(any(target_os = "macos", windows))] impl OsExtensions for Window {} -#[cfg(any( - target_os = "linux", - target_os = "freebsd", - target_os = "dragonfly", - target_os = "openbsd" -))] +#[cfg(not(any(target_os = "macos", windows)))] impl OsExtensions for Window { fn run_os_extensions(&self) { use libc::getpid; |