projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
663cd44
)
meson: kmssink: Allow fallback only on linux
author
Seungha Yang
<seungha@centricular.com>
Thu, 9 Apr 2020 14:12:25 +0000
(23:12 +0900)
committer
Nicolas Dufresne
<nicolas@ndufresne.ca>
Thu, 9 Apr 2020 18:36:12 +0000
(18:36 +0000)
Otherwise fallback will waste meson configure time on non-linux
sys/kms/meson.build
patch
|
blob
|
history
diff --git
a/sys/kms/meson.build
b/sys/kms/meson.build
index
fa5bb6b
..
0223f28
100644
(file)
--- a/
sys/kms/meson.build
+++ b/
sys/kms/meson.build
@@
-5,6
+5,10
@@
kmssink_sources = [
'gstkmsutils.c',
]
+if host_system != 'linux'
+ subdir_done()
+endif
+
libdrm_dep = dependency('libdrm', version : '>= 2.4.55',
required : get_option('kms'),
fallback: ['libdrm', 'ext_libdrm'])