summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-04-11 09:42:49 +0100
committerTim-Philipp Müller <tim@centricular.com>2017-04-11 09:43:53 +0100
commit0ded4c13560e873c8c39ee0ba2762dfe1c61659d (patch)
tree486ca6301a919e19f2259bc69dd1d7326b2effc5 /sys
parent456153cec9006dabc353de78ef7f51aa6b963844 (diff)
downloadgstreamer-plugins-bad-0ded4c13560e873c8c39ee0ba2762dfe1c61659d.tar.gz
meson: decklink: fix meson configure error on macOS
"meson encountered an error in file sys/decklink/meson.build, line 33, column 2: Invalid use of addition: must be str, not list" Also remove nonsensical linker flags on windows. https://bugzilla.gnome.org/show_bug.cgi?id=781156
Diffstat (limited to 'sys')
-rw-r--r--sys/decklink/meson.build3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/decklink/meson.build b/sys/decklink/meson.build
index df7772775..b5ca0486a 100644
--- a/sys/decklink/meson.build
+++ b/sys/decklink/meson.build
@@ -18,11 +18,10 @@ if libdl.found() and have_pthread_h
build_decklink = true
elif host_machine.system() == 'darwin'
decklink_sources += ['osx/DeckLinkAPIDispatch.cpp']
- decklink_ldflags = '-Wl,-framework,CoreFoundation'
+ decklink_ldflags = ['-Wl,-framework,CoreFoundation']
build_decklink = true
elif host_machine.system() == 'windows'
decklink_sources += ['win/DeckLinkAPIDispatch.cpp', 'win/DeckLinkAPI_i.c']
- decklink_ldflags = '-Wl,-framework,CoreFoundation'
build_decklink = true
else
message('Not building decklink plugin for system ' + host_machine.system())