Blame SOURCES/gpm-1.20.7-sigemptyset.patch

d0ff73
diff -r -u gpm-1.20.7-orig/src/prog/gpm-root.y gpm-1.20.7/src/prog/gpm-root.y
d0ff73
--- gpm-1.20.7-orig/src/prog/gpm-root.y	2012-10-26 16:21:38.000000000 -0500
d0ff73
+++ gpm-1.20.7/src/prog/gpm-root.y	2017-10-10 13:50:02.115721252 -0500
d0ff73
@@ -1196,11 +1196,7 @@
d0ff73
                                                         LOG_DAEMON : LOG_USER);
d0ff73
    /* reap your zombies */
d0ff73
    childaction.sa_handler=reap_children;
d0ff73
-#if defined(__GLIBC__)
d0ff73
-   __sigemptyset(&childaction.sa_mask);
d0ff73
-#else /* __GLIBC__ */
d0ff73
-   childaction.sa_mask=0;
d0ff73
-#endif /* __GLIBC__ */
d0ff73
+   sigemptyset(&childaction.sa_mask);
d0ff73
    childaction.sa_flags=SA_INTERRUPT; /* need to break the select() call */
d0ff73
    sigaction(SIGCHLD,&childaction,NULL);
d0ff73