mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
sthttpd: Define _GNU_SOURCE if HAVE_SIGSET is set
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
+51
@@ -0,0 +1,51 @@
|
|||||||
|
From f3889e5870e9761ee6113fac7f38aa44cc43e46c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Wed, 7 Sep 2022 00:30:52 -0700
|
||||||
|
Subject: [PATCH] Define _GNU_SOURCE if HAVE_SIGSET is set
|
||||||
|
|
||||||
|
This enforces using sigset() API which needs _GNU_SOURCE macro to be
|
||||||
|
defined
|
||||||
|
|
||||||
|
Upstream-Status: Submitted [https://github.com/blueness/sthttpd/pull/16]
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
src/libhttpd.c | 5 ++++-
|
||||||
|
src/thttpd.c | 4 ++++
|
||||||
|
2 files changed, 8 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/libhttpd.c b/src/libhttpd.c
|
||||||
|
index fa42c10..669be11 100644
|
||||||
|
--- a/src/libhttpd.c
|
||||||
|
+++ b/src/libhttpd.c
|
||||||
|
@@ -25,9 +25,12 @@
|
||||||
|
** SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
-
|
||||||
|
#include <config.h>
|
||||||
|
|
||||||
|
+#ifdef HAVE_SIGSET
|
||||||
|
+#define _GNU_SOURCE
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
//system headers
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/param.h>
|
||||||
|
diff --git a/src/thttpd.c b/src/thttpd.c
|
||||||
|
index ad97188..3c7a449 100644
|
||||||
|
--- a/src/thttpd.c
|
||||||
|
+++ b/src/thttpd.c
|
||||||
|
@@ -28,6 +28,10 @@
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
|
||||||
|
+#ifdef HAVE_SIGSET
|
||||||
|
+#define _GNU_SOURCE
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
//system headers
|
||||||
|
#include <sys/param.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
--
|
||||||
|
2.37.3
|
||||||
|
|
||||||
@@ -8,6 +8,7 @@ DEPENDS += "base-passwd virtual/crypt"
|
|||||||
|
|
||||||
SRCREV = "2845bf5bff2b820d2336c8c8061cbfc5f271e720"
|
SRCREV = "2845bf5bff2b820d2336c8c8061cbfc5f271e720"
|
||||||
SRC_URI = "git://github.com/blueness/${BPN};branch=master;protocol=https \
|
SRC_URI = "git://github.com/blueness/${BPN};branch=master;protocol=https \
|
||||||
|
file://0001-Define-_GNU_SOURCE-if-HAVE_SIGSET-is-set.patch \
|
||||||
file://thttpd.service \
|
file://thttpd.service \
|
||||||
file://thttpd.conf \
|
file://thttpd.conf \
|
||||||
file://init"
|
file://init"
|
||||||
|
|||||||
Reference in New Issue
Block a user