[PATCH 19/19] scripts/kconfig/mconf: fix build error on Mac OS X

Florian Fainelli florian at alphacore.org
Tue Sep 25 12:06:18 UTC 2012


From: Felix Fietkau <nbd at openwrt.org>

SIGWINCH is not defined for this platform, provide a definition of it if
needed.

Signed-off-by: Felix Fietkau <nbd at openwrt.org>
---
 scripts/kconfig/mconf.c |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index 1b0b6ab..84d7662 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"
 
-- 
1.7.9.5



More information about the busybox mailing list