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: a3a82efbf6 ("realtime: request SCHED_RR using CAP_SYS_NICE")
This commit is contained in:
Simon Ser 2022-05-30 18:25:01 +02:00 committed by Kenny Levinsen
parent cab2189aa6
commit a5c2e9fee0
2 changed files with 2 additions and 0 deletions

View File

@ -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,

View File

@ -220,6 +220,7 @@ sway_deps = [
glesv2,
pixman,
server_protos,
threads,
wayland_server,
wlroots,
xkbcommon,