summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-06-23 23:44:18 +0100
committerTim-Philipp Müller <tim@centricular.com>2017-06-23 23:44:18 +0100
commit0267575e792c30ae4557464af0a61d0055f04860 (patch)
tree66b1d6dd5e9ce844a4aae60ae53c08424a2c6609
parent27b77f93b5ea6b891ac2b4648dd8202cb6e089d1 (diff)
downloadgstreamer-0267575e792c30ae4557464af0a61d0055f04860.tar.gz
meson: don't error out if sidplay library is not found
-rw-r--r--ext/sidplay/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sidplay/meson.build b/ext/sidplay/meson.build
index ebc2a2a2db..5940ce9b79 100644
--- a/ext/sidplay/meson.build
+++ b/ext/sidplay/meson.build
@@ -8,7 +8,7 @@ if add_languages('cpp')
void somefunc (void) {
sidTune tune = sidTune(0);
}'''
- sidplay_dep = cxx.find_library('sidplay')
+ sidplay_dep = cxx.find_library('sidplay', required: false)
if sidplay_dep.found()
have_sidplay = cxx.compiles(sid_code, dependencies: sidplay_dep, name : 'sidplay')
endif