From 75ce2c3adc08cef85444e89a50b5c3be8f30f904 Mon Sep 17 00:00:00 2001 From: IoIxD Date: Mon, 27 Apr 2026 13:14:31 -0700 Subject: [PATCH] FreeBSD pl: correction --- pl/ostype/FreeBSD.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pl/ostype/FreeBSD.pl b/pl/ostype/FreeBSD.pl index 7b4c638..5ba602b 100644 --- a/pl/ostype/FreeBSD.pl +++ b/pl/ostype/FreeBSD.pl @@ -1,3 +1,5 @@ +my @enabled_backends = (); + add_incdir2("-I/usr/local/include"); add_libdir( "-L/usr/local/lib -Wl,-R/usr/local/lib"); @@ -9,6 +11,8 @@ if (param_get("x11")) { push(@enabled_backends, "x11"); } +use_backend(@enabled_backends); + add_libs("-lpthread"); add_cflags("-DUSE_DBUS");