Files
rpi-buildroot/package/tinyssh/0001-packet_put-Add-missing-bug.h-include-for-global_die-.patch
Florian Larysch 836be446b2 package/tinyssh: fix build issues with GCC 14
tinyssh 20240101 fails to build on GCC 14 because of a missing include
for a forward declaration. Import the upstream patch that fixes it.

Fixes: https://autobuild.buildroot.org/results/e45/e4563317371c90669f6417ee3d1c48a41cb59cb2/
Signed-off-by: Florian Larysch <fl@n621.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit cd0ce33b62)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
2025-08-21 10:40:46 +02:00

34 lines
987 B
Diff

From f863e60d93006019855a0431ea5cd71c8f1fc173 Mon Sep 17 00:00:00 2001
From: Haelwenn Monnier <contact+github.com@hacktivis.me>
Date: Tue, 9 Jan 2024 20:15:29 +0100
Subject: [PATCH] packet_put: Add missing bug.h include for global_die (#84)
```
packet_put.c:53:9: error: call to undeclared function 'global_die'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
global_die(111);
^
1 error generated.
```
Upstream: https://github.com/janmojzis/tinyssh/commit/f863e60d93006019855a0431ea5cd71c8f1fc173
Signed-off-by: Florian Larysch <fl@n621.de>
---
tinyssh/packet_put.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tinyssh/packet_put.c b/tinyssh/packet_put.c
index 17e8d84..7f46ff6 100644
--- a/tinyssh/packet_put.c
+++ b/tinyssh/packet_put.c
@@ -6,6 +6,7 @@ Public domain.
#include "uint32_pack_big.h"
#include "buf.h"
+#include "bug.h"
#include "sshcrypto.h"
#include "ssh.h"
#include "log.h"
--
2.50.1