This is an automatic generated email to let you know that the following patch were queued:
Subject: edid-decode: build: compile with -Wno-variadic-macros Author: Sebastian Wick <sebastian.w...@redhat.com> Date: Wed Jun 5 13:09:01 2024 +0200 When building as a subproject, I get warnings: ../subprojects/edid-decode/edid-decode.h:516:23: warning: ISO C++ does not permit named variadic macros [-Wvariadic-macros] 516 | #define warn(fmt, args...) msg(true, fmt, ##args) I cannot tell you why this happens though. I tried to reproduce this without a subproject by passing different compiler options and trying different standard versions but did not manage. So, I'm not sure why this is needed other than silencing annoying warnings in libdisplay-info. Signed-off-by: Sebastian Wick <sebastian.w...@redhat.com> Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl> meson.build | 1 + 1 file changed, 1 insertion(+) --- diff --git a/meson.build b/meson.build index 2340714bc879..a3f45128ffdb 100644 --- a/meson.build +++ b/meson.build @@ -7,6 +7,7 @@ edid_decode_args = [ '-Wno-missing-field-initializers', '-Wno-unused-parameter', '-Wimplicit-fallthrough', + '-Wno-variadic-macros', ] edid_decode_link_args = []