diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-08-26 19:24:28 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-08-26 19:24:28 +0000 |
commit | 1712ee8a39082a1d549a8821b91da166036a0f5e (patch) | |
tree | b1548285e6e8a58fb4037be890a304ea07c3df7d /daemon.c | |
parent | 50e8e4f84675b083592fcbe935cc5a04a75386c8 (diff) | |
download | fetchmail-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.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" |