diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-04-06 19:05:53 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-04-06 19:05:53 +0200 |
commit | 6b6a3d9339f1c08efaa18a7fb7357e20b48bdc95 (patch) | |
tree | a4be2c40671bf7a44ab2627c5d6edc9880827324 /scripts/kconfig/mconf.c | |
parent | 2c9970281083a99acfa3aec8c6d41db955cb583d (diff) | |
download | busybox-w32-6b6a3d9339f1c08efaa18a7fb7357e20b48bdc95.tar.gz busybox-w32-6b6a3d9339f1c08efaa18a7fb7357e20b48bdc95.tar.bz2 busybox-w32-6b6a3d9339f1c08efaa18a7fb7357e20b48bdc95.zip |
scripts/kconfig/mconf.c: survive is SIGWINCH is not defined
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts/kconfig/mconf.c')
-rw-r--r-- | scripts/kconfig/mconf.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 @@ | |||
27 | #include <unistd.h> | 27 | #include <unistd.h> |
28 | #include <locale.h> | 28 | #include <locale.h> |
29 | 29 | ||
30 | #ifndef SIGWINCH | ||
31 | #define SIGWINCH 28 | ||
32 | #endif | ||
33 | |||
30 | #define LKC_DIRECT_LINK | 34 | #define LKC_DIRECT_LINK |
31 | #include "lkc.h" | 35 | #include "lkc.h" |
32 | 36 | ||