commit | 6b6a3d9339f1c08efaa18a7fb7357e20b48bdc95 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Fri Apr 06 19:05:53 2018 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Fri Apr 06 19:05:53 2018 +0200 |
tree | a4be2c40671bf7a44ab2627c5d6edc9880827324 | |
parent | 2c9970281083a99acfa3aec8c6d41db955cb583d [diff] [blame] |
scripts/kconfig/mconf.c: survive is SIGWINCH is not defined Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index 006d037..adba114 100644 --- a/scripts/kconfig/mconf.c +++ b/scripts/kconfig/mconf.c
@@ -27,6 +27,10 @@ #include <unistd.h> #include <locale.h> +#ifndef SIGWINCH +#define SIGWINCH 28 +#endif + #define LKC_DIRECT_LINK #include "lkc.h"