ports/x11/gnome/tracker3/patches/patch-meson_build

19 lines
393 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
XXX push upstream
Index: meson.build
--- meson.build.orig
+++ meson.build
@@ -93,7 +93,11 @@ endif
have_avahi = avahi_glib.found() and avahi_client.found()
2023-08-16 22:26:55 +00:00
libmath = cc.find_library('m', required: false)
-libdl = cc.find_library('dl')
+if build_machine.system() == 'openbsd'
+ libdl = []
+else
+ libdl = cc.find_library('dl')
+endif
if get_option('man')
a2x = find_program('a2x')