blob: d2460434f01033449eea2f351952896baa3fc9f6 [file] [log] [blame]
Patrick Williams92b42cb2022-09-03 06:53:57 -05001From 04e2e924c3ab8da41343277746804dbcd7bf520d Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 13 Aug 2022 16:49:52 -0700
4Subject: [PATCH] daemon/mxml: Define _GNU_SOURCE
5
6This file uses vasprintf() which is defined only with _GNU_SOURCE
7feature macro is on.
8
9Upstream-Status: Pending
10
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 daemon/mxml/mxml-string.c | 2 ++
14 1 file changed, 2 insertions(+)
15
16diff --git a/daemon/mxml/mxml-string.c b/daemon/mxml/mxml-string.c
17index 678aeb9..c9cd153 100644
18--- a/daemon/mxml/mxml-string.c
19+++ b/daemon/mxml/mxml-string.c
20@@ -13,6 +13,8 @@
21 * Include necessary headers...
22 */
23
24+#define _GNU_SOURCE
25+
26 #include "config.h"
27
28
29--
302.37.2
31