diff options
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -31,6 +31,10 @@ # include <unistd.h> #endif +/* BSD portability hack */ +#if !defined(SIGCLD) && defined(SIGCHLD) +#define SIGCLD SIGCHLD +#endif #include "popclient.h" |