mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
shm: NetBSD build fix
shm_unlink() and friends live in librt on NetBSD. Adapt build system. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1323>
This commit is contained in:
parent
79c4275ed4
commit
49449dfa41
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@ if get_option('shm').disabled()
|
|||
subdir_done()
|
||||
endif
|
||||
|
||||
if ['darwin', 'ios'].contains(host_system) or host_system.endswith('bsd')
|
||||
# NetBSD has shm_* in librt
|
||||
if ['darwin', 'ios', 'freebsd', 'openbsd'].contains(host_system)
|
||||
rt_dep = []
|
||||
shm_enabled = true
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue