ae705ae3e4
- rebased (and renumbered) 001-ell-rtnl-fix-compile-with-older-toolchains.patch - drop dynamic library dependency as no longer needed since upstream commits [1] and [2] - add two upstream patches to fix musl/uclibc compile [1] https://git.kernel.org/pub/scm/libs/ell/ell.git/commit/?id=e129cb4cd2270f308c1564e75859672643dd902b [2] https://git.kernel.org/pub/scm/libs/ell/ell.git/commit/?id=a4ac2cb0e14f564754f7e2067ac7dde0a9ab1914 Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
27 lines
745 B
Diff
27 lines
745 B
Diff
From 6dfff19d4716ba216de1a3298ed0f667d7782810 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=C3=89rico=20Nogueira?= <ericonr@disroot.org>
|
|
Date: Mon, 30 Nov 2020 18:40:33 -0300
|
|
Subject: [PATCH] ell: add missing include in dhcp-server.
|
|
|
|
[Upstream: https://git.kernel.org/pub/scm/libs/ell/ell.git/patch/?id=6dfff19d4716ba216de1a3298ed0f667d7782810]
|
|
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
|
|
---
|
|
ell/dhcp-server.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/ell/dhcp-server.c b/ell/dhcp-server.c
|
|
index c983ed4..144e83e 100644
|
|
--- a/ell/dhcp-server.c
|
|
+++ b/ell/dhcp-server.c
|
|
@@ -24,6 +24,7 @@
|
|
#include <config.h>
|
|
#endif
|
|
|
|
+#include <linux/types.h>
|
|
#include <net/ethernet.h>
|
|
#include <sys/socket.h>
|
|
#include <arpa/inet.h>
|
|
--
|
|
2.29.2
|
|
|