1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-06 14:17:46 +00:00

build: add custom -I/-L flags for the BSDs [2]

Fixup commit. .append() seems to to nothing.
This commit is contained in:
Stefano Pigozzi 2013-11-28 08:05:44 +01:00
parent f10cca0e88
commit 156dcbbeb1

View File

@ -744,12 +744,12 @@ def configure(ctx):
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')
ctx.env.CFLAGS += ['-I/usr/local/include']
ctx.env.LINKFLAGS += ['-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.env.CFLAGS += ['-I/usr/pkg/include']
ctx.env.LINKFLAGS += ['-L/usr/pkg/lib']
ctx.parse_dependencies(build_options)
ctx.parse_dependencies(main_dependencies)