summaryrefslogtreecommitdiff
path: root/sys/shm
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-08-15 19:34:31 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-08-15 19:34:56 +0530
commit2a452f2a5dee43fee594b74b15cf94d9a45c6b32 (patch)
tree9d80c792687810722526514acdbedf5387d9295e /sys/shm
parent6ff5eb44cb6d85a7349c2ae45e7e4577fee9b08c (diff)
downloadgstreamer-plugins-bad-2a452f2a5dee43fee594b74b15cf94d9a45c6b32.tar.gz
meson: Fix shm librt dep check on macOS, iOS, and *BSD
Diffstat (limited to 'sys/shm')
-rw-r--r--sys/shm/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/shm/meson.build b/sys/shm/meson.build
index 6f573cfbf..a64d7a680 100644
--- a/sys/shm/meson.build
+++ b/sys/shm/meson.build
@@ -11,7 +11,7 @@ if get_option('shm').disabled()
endif
shm_deps = []
-if ['osx', 'bsd'].contains(host_system)
+if host_system == 'darwin' or host_system.contains('bsd')
rt_dep = []
shm_enabled = true
else