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

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