aboutsummaryrefslogtreecommitdiffstats
path: root/daemon.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-08-26 19:24:28 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-08-26 19:24:28 +0000
commit1712ee8a39082a1d549a8821b91da166036a0f5e (patch)
treeb1548285e6e8a58fb4037be890a304ea07c3df7d /daemon.c
parent50e8e4f84675b083592fcbe935cc5a04a75386c8 (diff)
downloadfetchmail-1712ee8a39082a1d549a8821b91da166036a0f5e.tar.gz
fetchmail-1712ee8a39082a1d549a8821b91da166036a0f5e.tar.bz2
fetchmail-1712ee8a39082a1d549a8821b91da166036a0f5e.zip
Portable to BSDI now.
svn path=/trunk/; revision=63
Diffstat (limited to 'daemon.c')
-rw-r--r--daemon.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/daemon.c b/daemon.c
index 56de2deb..087f051f 100644
--- a/daemon.c
+++ b/daemon.c
@@ -31,6 +31,10 @@
# include <unistd.h>
#endif
+/* BSD portability hack */
+#if !defined(SIGCLD) && defined(SIGCHLD)
+#define SIGCLD SIGCHLD
+#endif
#include "popclient.h"