mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 16:19:59 +00:00
meson: Don't pass -Werror to vendored code
Do it the correct way with libusrsctp -- override the option so that it's done in a compiler-agnostic and future-proof way. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2818>
This commit is contained in:
parent
d9d05bb97d
commit
4c576e1234
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,6 @@ else
|
|||
'-Wno-missing-declarations',
|
||||
'-Wno-old-style-definition',
|
||||
'-Wno-redundant-decls',
|
||||
'-Wno-error',
|
||||
])
|
||||
endif
|
||||
|
||||
|
@ -170,6 +169,7 @@ usrsctp_static = static_library('usrsctp-static', sources,
|
|||
c_args: compile_args,
|
||||
dependencies: dependencies,
|
||||
include_directories: include_dirs,
|
||||
override_options: ['werror=false'],
|
||||
install: false)
|
||||
|
||||
# Declare dependency
|
||||
|
|
Loading…
Reference in a new issue