mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 05:06:39 +00:00
gpm: fix build with glibc 2.26
Use sigemptyset() API instead of __sigemptyset(). __sigemptyset() has
been removed from glibc public API headers in upcoming (2.26) release
onwards.
Patch taken from:
fdc4277059
Fixes:
http://autobuild.buildroot.net/results/15e24f8c6a3ad2bfd198cc4fb094aeace7d1ee6a/
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
11ed80169c
commit
11a5a9d357
@ -0,0 +1,33 @@
|
|||||||
|
From fdc42770596e25749f7e2ce0ea97882177397167 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Sun, 25 Jun 2017 07:25:33 -0700
|
||||||
|
Subject: [PATCH] Use sigemptyset API instead of __sigemptyset
|
||||||
|
|
||||||
|
__sigemptyset has been removed from glibc public
|
||||||
|
API headers in upcoming (2.26) release onwards
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
---
|
||||||
|
src/prog/gpm-root.y | 4 ----
|
||||||
|
1 file changed, 4 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/prog/gpm-root.y b/src/prog/gpm-root.y
|
||||||
|
index 5126c65..76c896c 100644
|
||||||
|
--- a/src/prog/gpm-root.y
|
||||||
|
+++ b/src/prog/gpm-root.y
|
||||||
|
@@ -1196,11 +1196,7 @@ int main(int argc, char **argv)
|
||||||
|
LOG_DAEMON : LOG_USER);
|
||||||
|
/* reap your zombies */
|
||||||
|
childaction.sa_handler=reap_children;
|
||||||
|
-#if defined(__GLIBC__)
|
||||||
|
- __sigemptyset(&childaction.sa_mask);
|
||||||
|
-#else /* __GLIBC__ */
|
||||||
|
sigemptyset(&childaction.sa_mask);
|
||||||
|
-#endif /* __GLIBC__ */
|
||||||
|
childaction.sa_flags=0;
|
||||||
|
sigaction(SIGCHLD,&childaction,NULL);
|
||||||
|
|
||||||
|
--
|
||||||
|
2.14.2
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user