mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
allocators: Only build DRM allocator on Linux
This was causing issues when building the monorepo on macOS. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4208>
This commit is contained in:
parent
621ec7b6e8
commit
e448888e1e
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ endif
|
||||||
|
|
||||||
libdrm_dep = dependency('libdrm', version : '>= 2.4.98',
|
libdrm_dep = dependency('libdrm', version : '>= 2.4.98',
|
||||||
required : get_option('drm'),
|
required : get_option('drm'),
|
||||||
fallback: ['libdrm', 'ext_libdrm']
|
allow_fallback: host_system not in ['darwin', 'ios', 'android', 'windows']
|
||||||
)
|
)
|
||||||
|
|
||||||
core_conf.set('HAVE_LIBDRM', libdrm_dep.found())
|
core_conf.set('HAVE_LIBDRM', libdrm_dep.found())
|
||||||
|
|
Loading…
Reference in a new issue