aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2024-03-03 11:41:01 +0400
committerJosh Rahm <rahm@google.com>2024-08-14 15:41:13 -0600
commit35446043d56e9513a162582f0c6a0254ab1dabca (patch)
tree9d758a1863ae5af417582ead287764890ed70101
parent5fe7decc0c50734da14a2a0874359e03c4e55083 (diff)
downloadr-alacritty-35446043d56e9513a162582f0c6a0254ab1dabca.tar.gz
r-alacritty-35446043d56e9513a162582f0c6a0254ab1dabca.tar.bz2
r-alacritty-35446043d56e9513a162582f0c6a0254ab1dabca.zip
Fix build failure on NetBSD
x11-clipboard was unconditionally using eventfd which is not present on NetBSD. Links: https://github.com/quininer/x11-clipboard/issues/48
-rw-r--r--CHANGELOG.md1
-rw-r--r--Cargo.lock4
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 58ce9764..0f19c399 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -29,6 +29,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Freeze when moving window between monitors on Xfwm
- Mouse cursor not changing on Wayland when cursor theme uses legacy cursor icon names
- Config keys are available under proper names
+- Build failure when compiling with x11 feature on NetBSD
### Changed
diff --git a/Cargo.lock b/Cargo.lock
index 566794b6..69367f31 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2347,9 +2347,9 @@ dependencies = [
[[package]]
name = "x11-clipboard"
-version = "0.9.1"
+version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "613c2be3e772af2bbb57c5a94413675f5ec668bac00a71ada2ced28c420ef087"
+checksum = "b98785a09322d7446e28a13203d2cae1059a0dd3dfb32cb06d0a225f023d8286"
dependencies = [
"libc",
"x11rb",