From 0b0841e2906aa55d95f678a9198a959b17c4f951 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Tue, 29 Oct 2024 21:43:22 -0700 Subject: [PATCH] atlas-probe: fix compilation with GCC14 Missing header. Signed-off-by: Rosen Penev --- net/atlas-probe/Makefile | 2 +- net/atlas-probe/patches/020-gcc14.patch | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 net/atlas-probe/patches/020-gcc14.patch diff --git a/net/atlas-probe/Makefile b/net/atlas-probe/Makefile index 3c0845c0de..8724a8729e 100644 --- a/net/atlas-probe/Makefile +++ b/net/atlas-probe/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=atlas-probe PKG_VERSION:=2.6.3 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE_PROTO:=git PKG_SOURCE_VERSION:=$(PKG_VERSION) diff --git a/net/atlas-probe/patches/020-gcc14.patch b/net/atlas-probe/patches/020-gcc14.patch new file mode 100644 index 0000000000..442ddc1268 --- /dev/null +++ b/net/atlas-probe/patches/020-gcc14.patch @@ -0,0 +1,10 @@ +--- a/networking/telnetd.c ++++ b/networking/telnetd.c +@@ -133,6 +133,7 @@ + #include + #include + #include ++#include + + #define LOGIN_PREFIX "Atlas probe, see http://atlas.ripe.net/\r\n\r\n" + #define LOGIN_PROMPT " login: " -- 2.30.2