From 24da91625470a566a19095577704cf6432f2747a Mon Sep 17 00:00:00 2001 From: Armin Kuster Date: Sun, 28 Jul 2024 21:04:04 -0400 Subject: [PATCH] arpwatch: Fix compile error | ./dns.c:118:24: error: implicit declaration of function '_getshort'; did you mean '__putshort'? [-Wimplicit-function-declaration] upon others Signed-off-by: Armin Kuster --- recipes-scanners/arpwatch/arpwatch_3.3.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes-scanners/arpwatch/arpwatch_3.3.bb b/recipes-scanners/arpwatch/arpwatch_3.3.bb index cacfea7..84f93da 100644 --- a/recipes-scanners/arpwatch/arpwatch_3.3.bb +++ b/recipes-scanners/arpwatch/arpwatch_3.3.bb @@ -21,6 +21,10 @@ ARPWATCH_GID ?= "arpwatch" APRWATCH_FROM ?= "root " ARPWATH_REPLY ?= "${ARPWATCH_UID}" +# many configure tests are failing with gcc-14 +CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" +BUILD_CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" + PACKAGECONFIG ??= "" PACKAGECONFIG[email] = "-with-watcher=email=${APRWATCH_FROM} --with-watchee=email=${ARPWATH_REPLY}, , postfix, postfix postfix-cfg"