From 4455cffa3226cd58bf48f378d24aebf1b7033ddf Mon Sep 17 00:00:00 2001 From: Alex Samorukov Date: Mon, 4 Jan 2021 01:18:44 +0100 Subject: Fix mail compilation on the FreeBSD FreeBSD using procctl instead of Linux prctl Signed-off-by: Alex Samorukov Signed-off-by: Denys Vlasenko --- mailutils/mail.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'mailutils/mail.c') diff --git a/mailutils/mail.c b/mailutils/mail.c index 61e5053bc..f48b41bab 100644 --- a/mailutils/mail.c +++ b/mailutils/mail.c @@ -6,7 +6,13 @@ * * Licensed under GPLv2, see file LICENSE in this source tree. */ -#include +#if defined(__linux__) +# include +# define PRCTL +#elif defined(__FreeBSD__) +# include +# define PROCCTL +#endif #include "libbb.h" #include "mail.h" @@ -55,7 +61,14 @@ void FAST_FUNC launch_helper(const char **argv) xmove_fd(child_in.rd, STDIN_FILENO); xmove_fd(child_out.wr, STDOUT_FILENO); // if parent dies, get SIGTERM +#if defined(PRCTL) prctl(PR_SET_PDEATHSIG, SIGTERM, 0, 0, 0); +#elif defined(PROCCTL) + { + int signum = SIGTERM; + procctl(P_PID, 0, PROC_PDEATHSIG_CTL, &signum); + } +#endif // try to execute connection helper // NB: SIGCHLD & SIGALRM revert to SIG_DFL on exec BB_EXECVP_or_die((char**)argv); -- cgit v1.2.3