43 lines
1.0 KiB
Diff
43 lines
1.0 KiB
Diff
--- libnm-core/nm-utils.h.orig
|
|
+++ libnm-core/nm-utils.h
|
|
@@ -30,7 +30,11 @@
|
|
#include <netinet/in.h>
|
|
|
|
/* For ETH_ALEN and INFINIBAND_ALEN */
|
|
+#if defined(__GLIBC__)
|
|
#include <linux/if_ether.h>
|
|
+#else
|
|
+#define ETH_ALEN 6 /* Octets in one ethernet addr */
|
|
+#endif
|
|
#include <linux/if_infiniband.h>
|
|
|
|
#include "nm-core-enum-types.h"
|
|
--- src/platform/wifi/wifi-utils.h.orig
|
|
+++ src/platform/wifi/wifi-utils.h
|
|
@@ -22,7 +22,11 @@
|
|
#ifndef __WIFI_UTILS_H__
|
|
#define __WIFI_UTILS_H__
|
|
|
|
+#if defined(__GLIBC__)
|
|
#include <net/ethernet.h>
|
|
+#else /* musl libc */
|
|
+#define ETH_ALEN 6 /* Octets in one ethernet addr */
|
|
+#endif
|
|
|
|
#include "nm-dbus-interface.h"
|
|
|
|
--- src/systemd/src/basic/socket-util.h.orig
|
|
+++ src/systemd/src/basic/socket-util.h
|
|
@@ -28,6 +28,11 @@
|
|
#include <sys/un.h>
|
|
#include <linux/netlink.h>
|
|
#include <linux/if_packet.h>
|
|
+#if !defined(__GLIBC__)
|
|
+/* SIOCGSTAMPNS from linux/asm-generic.h
|
|
+ * for src/systemd/src/libsystemd-network/sd-lldp.c */
|
|
+#include <linux/sockios.h>
|
|
+#endif
|
|
|
|
#include "macro.h"
|
|
#include "util.h"
|