1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Add the author's patch to fix a failure to reap children on BSD systems,

where SIG_IGN as the signal handler for SIGCHLD is bad.  This is only
an issue when a significant number of messages is received via pipe
(e.g. with -bS) at a faster rate than they can be dealt with by parallel
delivery agents (e.g. -odqs).

Bump PORTREVISION to reflect the change.

Obtained from: exim-users@exim.org
Message-Id: Pine.SOL.4.33.0111021349170.19636-100000@virgo.cus.cam.ac.uk
This commit is contained in:
Sheldon Hearn 2001-11-02 17:11:14 +00:00
parent cd4c2a4e4b
commit 34323bd7e0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=49513
6 changed files with 27 additions and 3 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= exim
PORTVERSION= 3.33
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= mail
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ \
http://www.exim.org/ftp/ \

View File

@ -10,3 +10,11 @@
(list_queue && queue_list_requires_admin) ||
(queue_interval >= 0 && prod_requires_admin))
{
@@ -3462,6 +3463,7 @@
}
/* The loop will repeat if more is TRUE. */
+ while (waitpid(-1, NULL, WNOHANG) > 0);
}
exim_exit(EXIT_SUCCESS); /* Never returns */

View File

@ -7,7 +7,7 @@
PORTNAME= exim
PORTVERSION= 3.33
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= mail
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ \
http://www.exim.org/ftp/ \

View File

@ -10,3 +10,11 @@
(list_queue && queue_list_requires_admin) ||
(queue_interval >= 0 && prod_requires_admin))
{
@@ -3462,6 +3463,7 @@
}
/* The loop will repeat if more is TRUE. */
+ while (waitpid(-1, NULL, WNOHANG) > 0);
}
exim_exit(EXIT_SUCCESS); /* Never returns */

View File

@ -7,7 +7,7 @@
PORTNAME= exim
PORTVERSION= 3.33
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= mail
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ \
http://www.exim.org/ftp/ \

View File

@ -10,3 +10,11 @@
(list_queue && queue_list_requires_admin) ||
(queue_interval >= 0 && prod_requires_admin))
{
@@ -3462,6 +3463,7 @@
}
/* The loop will repeat if more is TRUE. */
+ while (waitpid(-1, NULL, WNOHANG) > 0);
}
exim_exit(EXIT_SUCCESS); /* Never returns */