Index | Thread | Search

From:
Landry Breuil <landry@openbsd.org>
Subject:
Re: [Update] x11/alacritty 0.15.1
To:
Volker Schlecht <openbsd-ports@schlecht.dev>
Cc:
ports@openbsd.org, eau+obsd@unix4fun.net
Date:
Sat, 1 Mar 2025 08:43:55 +0100

Download raw body.

Thread
  • Landry Breuil:

    [Update] x11/alacritty 0.15.1

Le Mon, Feb 17, 2025 at 07:26:52PM +0100, Volker Schlecht a écrit :
> Here's a minor update to x11/alacritty, along with a ping about fixing the
> location of the installed fish shell completions.

fwiw, i gave it a quick test and it still fails at startup on wayland,
with "Error { raw_code: None, raw_os_message: None, kind:
NotSupported("provided display handle is not supported") }"

had a quick look, and there are 3 occurences of that error msg in this
crate:

https://github.com/rust-windowing/glutin/blob/master/glutin/src/api/egl/display.rs

one in get_platform_display(), one in get_platform_display_ext(), and
one in get_display().

the 3 methods are called from new() in
https://github.com/rust-windowing/glutin/blob/master/glutin/src/api/egl/display.rs#L52.

whatever happens on openbsd/wayland, there's something wrong. or
somewhere in the rust goo there's some 'if not macos or windows or
linux, bail out' codepath..but the only [cfg(target_os = "linux")] i
could fine in alacritty code are in tests.

Landry