<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 5c7021db56b652a33b563877cf44419d08cee32c Mon Sep 17 00:00:00 2001
From: Sergey Fedorov &lt;vital.had@gmail.com&gt;
Date: Wed, 9 Oct 2024 18:13:17 +0700
Subject: [PATCH 01/10] mm-netlink.c: fix include order

Some macOS versions require sys/socket.h to be included prior to net/if.h, otherwise it fails to compile.
---
 src/mm-netlink.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mm-netlink.c b/src/mm-netlink.c
index c54942be..58c3d010 100644
--- a/src/mm-netlink.c
+++ b/src/mm-netlink.c
@@ -19,9 +19,9 @@
 
 #include &lt;linux/netlink.h&gt;
 #include &lt;linux/rtnetlink.h&gt;
-#include &lt;net/if.h&gt;
 #include &lt;sys/socket.h&gt;
 #include &lt;sys/types.h&gt;
+#include &lt;net/if.h&gt;
 
 #include &lt;config.h&gt;
 
-- 
2.46.1

</pre></body></html>