Jan Beich

Results 98 comments of Jan Beich

> I think ports should be reverted until Poudriere is handling dependencies and cleanup properly. Doesn't look critical for a revert but I'm biased: - both alsa-plugins and libdecor changes...

Similar on Intel iGPU under X11 (Xwayland): Vulkan crashes but OpenGL works. Elsewhere (mpv, veloren, ppsspp, rpcs3, yuzu, gamescope) Vulkan works fine. v1.31.0 tag crash ```c++ $ gltf_viewer WARNING: Using...

Duplicate of https://github.com/ziglang/zig/issues/14111. Workaround: ```sh $ export PKG_CONFIG_SYSTEM_LIBRARY_PATH="/usr/local/lib" ``` or (csh-style) ```csh % setenv PKG_CONFIG_SYSTEM_LIBRARY_PATH "/usr/local/lib" ```

> TTY Not supported on FreeBSD. My guess: [vt(4)](https://man.freebsd.org/vt/4) expects native keyboard events instead of evdev, so either `/dev/uinput` needs to create [vkbd(4)](https://man.freebsd.org/vkbd/4) or [kbdmux(4)](https://man.freebsd.org/kbdmux/4) needs to pull/read evdev events....

94bab4506f2e needs another fix due to [AVStream.codec removal](https://github.com/ffmpeg/ffmpeg/commit/3749eede66c3) in favor of [AVStream.codecpar](https://github.com/ffmpeg/ffmpeg/commit/9200514ad871): ```c++ Core/HW/MediaEngine.cpp:427:38: error: no member named 'codec' in 'AVStream' m_codecsToClose.push_back(stream->codec); ~~~~~~ ^ ```

> the officially supported way to build is to use the included ffmpeg, not the system ffmpeg. Until #15969 the included FFmpeg is not usable on BSDs or any other...

Wrong repo and duplicate of https://github.com/foxcpp/ssr-wlroots/issues/5

Have you tried backporting arvidn/libtorrent@d1a63cd781e7 as well?

`timerfd_settime` requires [`-lepoll-shim`](https://github.com/jiixyj/epoll-shim) on BSDs. Probably, [`timerfd` crate](https://github.com/main--/rust-timerfd) needs to be ported or replaced with something less Linux-specific.

I've dropped Meson workaround and rebased after aquamarine switch.