From: zeertzjq Date: Thu, 8 Jan 2026 20:10:09 +0000 (+0000) Subject: CI: build failure in if_perl.xs X-Git-Tag: v9.1.2065~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa58f1fe448a9e4cf58c06d425015603fb26c023;p=thirdparty%2Fvim.git CI: build failure in if_perl.xs Problem: CI: build failure in if_perl.xs. Solution: Add -Wno-strict-prototypes to PERL_CFLAGS_EXTRA (zeertzjq). closes: #19132 Signed-off-by: zeertzjq Signed-off-by: Christian Brabandt --- diff --git a/ci/config.mk.sed b/ci/config.mk.sed index d888901931..f667b2c04f 100644 --- a/ci/config.mk.sed +++ b/ci/config.mk.sed @@ -1,3 +1,3 @@ /^CFLAGS[[:blank:]]*=/s/$/ -Wall -Wextra -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Werror -Wno-deprecated-declarations/ -/^PERL_CFLAGS_EXTRA[[:blank:]]*=/s/$/ -Wno-error=unused-function -Wno-shadow/ +/^PERL_CFLAGS_EXTRA[[:blank:]]*=/s/$/ -Wno-error=unused-function -Wno-strict-prototypes -Wno-shadow/ /^RUBY_CFLAGS_EXTRA[[:blank:]]*=/s/$/ -Wno-error=unused-parameter -Wno-strict-prototypes/