From 6b6a3d9339f1c08efaa18a7fb7357e20b48bdc95 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 6 Apr 2018 19:05:53 +0200 Subject: scripts/kconfig/mconf.c: survive is SIGWINCH is not defined Signed-off-by: Denys Vlasenko --- scripts/kconfig/mconf.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts') 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" -- cgit v1.2.3