From f2832ad9653815103b39daf873511baa37424d3d Mon Sep 17 00:00:00 2001 From: Stuart Henderson Date: Wed, 9 Mar 2022 14:33:02 +0000 Subject: [PATCH] patch 8.2.4532: suspending with CTRL-Z does not work on OpenBSD Problem: Suspending with CTRL-Z does not work on OpenBSD. Solution: Adjust #ifdef for SIGTSTP. (Stuart Henderson, closes #9912) --- src/os_unix.c | 5 +++-- src/version.c | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/os_unix.c b/src/os_unix.c index 58f8276fb..e617b128f 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -887,8 +887,9 @@ sig_tstp SIGDEFARG(sigarg) else got_tstp = TRUE; -#ifndef __ANDROID__ - // this is not required on all systems +#if !defined(__ANDROID__) && !defined(__OpenBSD__) + // This is not required on all systems. On some systems (at least Android + // and OpenBSD) this breaks suspending with CTRL-Z. signal(SIGTSTP, (RETSIGTYPE (*)())sig_tstp); #endif SIGRETURN; diff --git a/src/version.c b/src/version.c index 9b25ef0de..9248ca403 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4532, /**/ 4531, /**/ -- 2.40.0