diff options
| author | Armin Kuster <akuster808@gmail.com> | 2024-07-28 21:04:04 -0400 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2024-07-29 20:07:01 -0400 |
| commit | 24da91625470a566a19095577704cf6432f2747a (patch) | |
| tree | 50b9fc32277c4b757fa5c2adb39d369bc69d546e | |
| parent | 2e21e548127bbeebfafca38965cf5224e0b27c2a (diff) | |
| download | meta-security-24da91625470a566a19095577704cf6432f2747a.tar.gz | |
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 <akuster808@gmail.com>
| -rw-r--r-- | recipes-scanners/arpwatch/arpwatch_3.3.bb | 4 |
1 files changed, 4 insertions, 0 deletions
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" | |||
| 21 | APRWATCH_FROM ?= "root " | 21 | APRWATCH_FROM ?= "root " |
| 22 | ARPWATH_REPLY ?= "${ARPWATCH_UID}" | 22 | ARPWATH_REPLY ?= "${ARPWATCH_UID}" |
| 23 | 23 | ||
| 24 | # many configure tests are failing with gcc-14 | ||
| 25 | CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" | ||
| 26 | BUILD_CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" | ||
| 27 | |||
| 24 | PACKAGECONFIG ??= "" | 28 | PACKAGECONFIG ??= "" |
| 25 | 29 | ||
| 26 | PACKAGECONFIG[email] = "-with-watcher=email=${APRWATCH_FROM} --with-watchee=email=${ARPWATH_REPLY}, , postfix, postfix postfix-cfg" | 30 | PACKAGECONFIG[email] = "-with-watcher=email=${APRWATCH_FROM} --with-watchee=email=${ARPWATH_REPLY}, , postfix, postfix postfix-cfg" |
