summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wscript8
1 files changed, 8 insertions, 0 deletions
diff --git a/wscript b/wscript
index d2e3070de5..21063d3927 100644
--- a/wscript
+++ b/wscript
@@ -743,6 +743,14 @@ def configure(ctx):
ctx.load('detections.cpu')
ctx.load('detections.devices')
+ if ctx.env.DEST_OS in ('freebsd', 'openbsd'):
+ ctx.env.CFLAGS.append('-I/usr/local/include')
+ ctx.env.LINKFLAGS.append('-L/usr/local/lib')
+
+ if ctx.env.DEST_OS == 'netbsd':
+ ctx.env.CFLAGS.append('-I/usr/pkg/include')
+ ctx.env.LINKFLAGS.append('-L/usr/pkg/lib')
+
ctx.parse_dependencies(build_options)
ctx.parse_dependencies(main_dependencies)
ctx.parse_dependencies(audio_output_features)