sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit a5c2e9fee073448db8985fd54265b6b52b2dbcf2
parent cab2189aa64d04ba79dc2cbf19400435b47cdbd2
Author: Simon Ser <contact@emersion.fr>
Date:   Mon, 30 May 2022 18:25:01 +0200

build: link with -pthread

Fixes the following FreeBSD error:

    ld: error: undefined symbol: pthread_getschedparam
    >>> referenced by realtime.c:25 (../sway/realtime.c:25)
    >>>               sway/sway.p/realtime.c.o:(set_rr_scheduling)

Fixes: a3a82efbf6b5 ("realtime: request SCHED_RR using CAP_SYS_NICE")

Diffstat:
Mmeson.build | 1+
Msway/meson.build | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/meson.build b/meson.build @@ -70,6 +70,7 @@ fish_comp = dependency('fish', required: false) math = cc.find_library('m') rt = cc.find_library('rt') xcb_icccm = dependency('xcb-icccm', required: get_option('xwayland')) +threads = dependency('threads') # for pthread_setschedparam wlroots_features = { 'xwayland': false, diff --git a/sway/meson.build b/sway/meson.build @@ -220,6 +220,7 @@ sway_deps = [ glesv2, pixman, server_protos, + threads, wayland_server, wlroots, xkbcommon,