mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
meson: Fix shm librt dep check on macOS, iOS, and *BSD
This commit is contained in:
parent
6ff5eb44cb
commit
2a452f2a5d
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ if get_option('shm').disabled()
|
||||||
endif
|
endif
|
||||||
|
|
||||||
shm_deps = []
|
shm_deps = []
|
||||||
if ['osx', 'bsd'].contains(host_system)
|
if host_system == 'darwin' or host_system.contains('bsd')
|
||||||
rt_dep = []
|
rt_dep = []
|
||||||
shm_enabled = true
|
shm_enabled = true
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue