diff options
author | Alessandro Decina <alessandro.d@gmail.com> | 2017-07-20 18:51:53 +1000 |
---|---|---|
committer | Alessandro Decina <alessandro.d@gmail.com> | 2017-07-20 18:52:19 +1000 |
commit | 6e3f493a96fe95409d530c8b1ca53fedbace05b2 (patch) | |
tree | 0fbd162b42568da468c7e8327d35eb7da5894d56 /sys/shm/meson.build | |
parent | f33b2fcf4c289d9d409bce1b72047dd76d25bcb5 (diff) | |
download | gstreamer-plugins-bad-6e3f493a96fe95409d530c8b1ca53fedbace05b2.tar.gz |
meson: fix potentially undefined shm_deps variable
Diffstat (limited to 'sys/shm/meson.build')
-rw-r--r-- | sys/shm/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/shm/meson.build b/sys/shm/meson.build index efa916a3a..5ff266860 100644 --- a/sys/shm/meson.build +++ b/sys/shm/meson.build @@ -7,6 +7,7 @@ shm_sources = [ ] shm_enabled = false +shm_deps = [] rt_dep = cc.find_library ('rt', required: false) if cc.has_header ('sys/socket.h') and (host_system == 'osx' or |