mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-05 22:12:34 +00:00
x265: Ignore undef in external headers
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8229>
This commit is contained in:
parent
c79164a02e
commit
ad79fbd744
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ x265_dep = dependency('x265', required: x265_opt)
|
||||||
if x265_dep.found()
|
if x265_dep.found()
|
||||||
gstx265 = library('gstx265',
|
gstx265 = library('gstx265',
|
||||||
'gstx265enc.c',
|
'gstx265enc.c',
|
||||||
c_args : gst_plugins_bad_args,
|
c_args : gst_plugins_bad_args + cc.get_supported_arguments(['-Wno-undef']),
|
||||||
include_directories : [configinc],
|
include_directories : [configinc],
|
||||||
dependencies : [gstpbutils_dep, gstvideo_dep, x265_dep],
|
dependencies : [gstpbutils_dep, gstvideo_dep, x265_dep],
|
||||||
install : true,
|
install : true,
|
||||||
|
|
Loading…
Reference in a new issue