summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 876b55e..f3a8588 100644
--- a/meson.build
+++ b/meson.build
@@ -154,6 +154,11 @@ if js_engine == 'duktape'
config_h.set('HAVE_' + func.to_upper(), cc.has_function(func, prefix : '#include <pthread.h>'))
elif js_engine == 'mozjs'
js_dep = dependency('mozjs-102')
+
+ _system = host_machine.system().to_lower()
+ if _system.contains('freebsd')
+ config_h.set('__BSD_VISIBLE', 1)
+ endif
endif
dbus_dep = dependency('dbus-1', required: false)