summaryrefslogtreecommitdiff
path: root/audio/asunder/patches/patch-src_wrappers.c
blob: 29b600bf2a72ee8f0102b8c9e0690991c13e2110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$NetBSD: patch-src_wrappers.c,v 1.1 2014/02/04 11:36:44 obache Exp $

skip missing WIFCONTINUED

--- src/wrappers.c.orig	2013-12-18 16:17:29.000000000 +0000
+++ src/wrappers.c
@@ -135,8 +135,10 @@ void sigchld(int signum)
         debugLog("killed by signal %d\n", WTERMSIG(status));
     else if (WIFSTOPPED(status))
         debugLog("stopped by signal %d\n", WSTOPSIG(status));
+#if defined(WIFCONTINUED)
     else if (WIFCONTINUED(status))
         debugLog("continued\n");
+#endif
 
     if (status != 0)
     {