61c145
From 3052ce208acf602f0163166dcefb7330d537cedb Mon Sep 17 00:00:00 2001
61c145
From: Jiri Slaby <jslaby@suse.cz>
61c145
Date: Wed, 24 Jul 2019 17:34:48 +0100
61c145
Subject: [PATCH] Fix build after y2038 changes in glib.
61c145
61c145
SIOCGSTAMP is defined in linux/sockios.h, not asm/sockios.h now.
61c145
---
61c145
 src/dnsmasq.h | 1 +
61c145
 1 file changed, 1 insertion(+)
61c145
61c145
diff --git a/src/dnsmasq.h b/src/dnsmasq.h
61c145
index ff3204a..3ef04ad 100644
61c145
--- a/src/dnsmasq.h
61c145
+++ b/src/dnsmasq.h
61c145
@@ -137,6 +137,7 @@ typedef unsigned long long u64;
61c145
 #endif
61c145
 
61c145
 #if defined(HAVE_LINUX_NETWORK)
61c145
+#include <linux/sockios.h>
61c145
 #include <linux/capability.h>
61c145
 /* There doesn't seem to be a universally-available 
61c145
    userspace header for these. */
61c145
-- 
61c145
2.36.1
61c145