From: Denys Vlasenko Date: Fri, 6 Apr 2018 17:05:53 +0000 (+0200) Subject: scripts/kconfig/mconf.c: survive is SIGWINCH is not defined X-Git-Tag: 1_29_0~127 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6b6a3d9339f1c08efaa18a7fb7357e20b48bdc95;p=oweals%2Fbusybox.git scripts/kconfig/mconf.c: survive is SIGWINCH is not defined Signed-off-by: Denys Vlasenko --- diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index 006d03708..adba1141b 100644 --- a/scripts/kconfig/mconf.c +++ b/scripts/kconfig/mconf.c @@ -27,6 +27,10 @@ #include #include +#ifndef SIGWINCH +#define SIGWINCH 28 +#endif + #define LKC_DIRECT_LINK #include "lkc.h"