mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
meson: fbdev: fix 'invalid keyword argument' meson warnings
Required is not a valid kwarg for cc.has_header()
This commit is contained in:
parent
5bc368124a
commit
5e372f71b6
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ fbdevsink_sources = [
|
|||
'gstfbdevsink.c',
|
||||
]
|
||||
|
||||
if cc.has_header('linux/fb.h', required : false)
|
||||
if cc.has_header('linux/fb.h')
|
||||
gstfbdevsink = library('gstfbdevsink',
|
||||
fbdevsink_sources,
|
||||
c_args : gst_plugins_bad_args,
|
||||
|
|
Loading…
Reference in a new issue