diff mbox series

[meta-security,13/17] arpwatch: disable compiler errors

Message ID 20240725090131.75860-13-mikko.rapeli@linaro.org
State New
Headers show
Series [meta-security,01/17] bastille: UNPACKDIR fixes | expand

Commit Message

Mikko Rapeli July 25, 2024, 9:01 a.m. UTC
Old code throws new warnings and fails to compile.
Work around the issues.

Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
---
 recipes-scanners/arpwatch/arpwatch_3.3.bb | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/recipes-scanners/arpwatch/arpwatch_3.3.bb b/recipes-scanners/arpwatch/arpwatch_3.3.bb
index cacfea7..a3f42f8 100644
--- a/recipes-scanners/arpwatch/arpwatch_3.3.bb
+++ b/recipes-scanners/arpwatch/arpwatch_3.3.bb
@@ -45,6 +45,8 @@  CONFIGUREOPTS = " --build=${BUILD_SYS} \
           --with-sendmail=${sbindir}/sendmail \
           "
 
+CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration -Wno-error=unused-result"
+
 do_configure () {
     ${S}/configure ${CONFIGUREOPTS}
 }