mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 13:18:36 -09:00
package/babeld: bump to version 1.14
The removed patch has been merged [1].
Release notes:
https://github.com/jech/babeld/blob/master/CHANGES
[1] f8e5fbb336
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
committed by
Julien Olivain
parent
c361afc1c3
commit
b396091dbf
@@ -1,38 +0,0 @@
|
||||
From f8e5fbb33690b516b8516590def5136e6619de4c Mon Sep 17 00:00:00 2001
|
||||
From: Dario Binacchi <dario.binacchi@amarulasolutions.com>
|
||||
Date: Tue, 17 Sep 2024 21:48:01 +0200
|
||||
Subject: [PATCH] Fix uclibc build issue
|
||||
|
||||
This patch fixes the following compilation error raised by the bump to
|
||||
version 1.13.1 in Buildroot [1] using uclibc as the C library for the
|
||||
cross-compilation toolchain:
|
||||
|
||||
net.c: In function 'babel_send':
|
||||
net.c:199:27: error: 'IPV6_DONTFRAG' undeclared (first use in this function)
|
||||
199 | cmsg->cmsg_type = IPV6_DONTFRAG;;
|
||||
|
||||
[1] https://patchwork.ozlabs.org/project/buildroot/patch/20240917201030.11583-1-dario.binacchi@amarulasolutions.com/
|
||||
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
|
||||
Upstream: https://github.com/jech/babeld/pull/121
|
||||
---
|
||||
net.c | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/net.c b/net.c
|
||||
index 7a7b57844e6c..30de3dafe1d9 100644
|
||||
--- a/net.c
|
||||
+++ b/net.c
|
||||
@@ -37,6 +37,10 @@ THE SOFTWARE.
|
||||
#include <arpa/inet.h>
|
||||
#include <errno.h>
|
||||
|
||||
+#if defined(__UCLIBC__)
|
||||
+#include <linux/in6.h>
|
||||
+#endif
|
||||
+
|
||||
#include "babeld.h"
|
||||
#include "util.h"
|
||||
#include "net.h"
|
||||
--
|
||||
2.43.0
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 15f24d26da0ccfc073abcdef0309f281e4684f2aa71126f826572c4c845e8dd9 babeld-1.13.1.tar.gz
|
||||
sha256 c4ed13c04880ccc3a85a99645dcb64134beac8ab0607fe32a4d07e1057ad73b7 babeld-1.14.tar.gz
|
||||
sha256 b415c41292cedef6c97b243609e50552887c29343566c639f23282d31efd2afd LICENCE
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
BABELD_VERSION = 1.13.1
|
||||
BABELD_VERSION = 1.14
|
||||
BABELD_SITE = https://www.irif.fr/~jch/software/files
|
||||
BABELD_LICENSE = MIT
|
||||
BABELD_LICENSE_FILES = LICENCE
|
||||
|
||||
Reference in New Issue
Block a user