[Buildroot] [git commit branch/2018.02.x] mosquitto: fix build with some glibc

Peter Korsgaard peter at korsgaard.com
Sun Nov 25 21:15:06 UTC 2018


commit: https://git.buildroot.net/buildroot/commit/?id=2177c01655a6251eb58485bc0cc5edc68ac418f5
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2018.02.x

Add patch to define _GNU_SOURCE before using S_IF{DIR,REG}

Fixes:
 - http://autobuild.buildroot.net/results/7dcfb6ca9d14a5cd6872590065549356f1ab42a0

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
(cherry picked from commit f66c171b4d046aca791f524ff198fb7df08d5ab0)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 ...ckets-_GNU_SOURCE-needed-for-S_IF-DIR-REG.patch | 34 ++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/package/mosquitto/0002-websockets-_GNU_SOURCE-needed-for-S_IF-DIR-REG.patch b/package/mosquitto/0002-websockets-_GNU_SOURCE-needed-for-S_IF-DIR-REG.patch
new file mode 100644
index 0000000000..88f9cbd94a
--- /dev/null
+++ b/package/mosquitto/0002-websockets-_GNU_SOURCE-needed-for-S_IF-DIR-REG.patch
@@ -0,0 +1,34 @@
+From d4442c3df7552756f53e656e446bc1bd7dc79a88 Mon Sep 17 00:00:00 2001
+From: Fabrice Fontaine <fontaine.fabrice at gmail.com>
+Date: Mon, 18 Jun 2018 19:52:58 +0200
+Subject: [PATCH] websockets: _GNU_SOURCE needed for S_IF{DIR,REG}
+
+Define of _GNU_SOURCE is needed to be able to use S_IFDIR and S_IFREG in
+src/websockets.c
+
+Fixes:
+ - http://autobuild.buildroot.net/results/7dcfb6ca9d14a5cd6872590065549356f1ab42a0
+
+[Upstream status: https://github.com/eclipse/mosquitto/pull/862]
+
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
+---
+ src/websockets.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/websockets.c b/src/websockets.c
+index 1e513ae..7722b4d 100644
+--- a/src/websockets.c
++++ b/src/websockets.c
+@@ -29,6 +29,8 @@ POSSIBILITY OF SUCH DAMAGE.
+ 
+ #ifdef WITH_WEBSOCKETS
+ 
++#define _GNU_SOURCE
++
+ #include "config.h"
+ 
+ #include <libwebsockets.h>
+-- 
+2.14.1
+


More information about the buildroot mailing list