* [PATCH 2.6.9] Fix menuconfig on Solaris
@ 2004-10-27 21:48 Tom Rini
2004-10-30 22:16 ` Sam Ravnborg
0 siblings, 1 reply; 2+ messages in thread
From: Tom Rini @ 2004-10-27 21:48 UTC (permalink / raw)
To: Sam Ravnborg, Kernel Mailing List, zippel, kai
Something occured to me after I sent my first round of Solaris patches,
people might want to use 'menuconfig' not just config/oldconfig. The
following two bits are needed to get it working (not as colorful as on
Linux, but it functions) for me. First, unless CURS_MACROS is defined,
scroll(x) doesn't get expanded to wscrl(x, 1). I did some quick
grepping on Cygwin and Linux (debian/unstable) and didn't see
CURS_MACROS show up anywhere else, but to be safe I put it inside of
__sun__. Next this uses libcurses instead of libncurses otherwise we
get a bunch of undefined refs to w32attrset, w32addch, acs32map and few
more.
Signed-off-by: Tom Rini <trini@kernel.crashing.org>
--- linux-2.6.9.orig/scripts/lxdialog/dialog.h
+++ linux-2.6.9/scripts/lxdialog/dialog.h
@@ -26,6 +26,9 @@
#include <stdlib.h>
#include <string.h>
+#ifdef __sun__
+#define CURS_MACROS
+#endif
#include CURSES_LOC
/*
--- linux-2.6.9.orig/scripts/lxdialog/Makefile
+++ linux-2.6.9/scripts/lxdialog/Makefile
@@ -1,5 +1,9 @@
HOST_EXTRACFLAGS := -DLOCALE
+ifeq ($(shell uname),SunOS)
+HOST_LOADLIBES := -lcurses
+else
HOST_LOADLIBES := -lncurses
+endif
ifeq (/usr/include/ncurses/ncurses.h, $(wildcard /usr/include/ncurses/ncurses.h))
HOST_EXTRACFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>"
--
Tom Rini
http://gate.crashing.org/~trini/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-10-30 20:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-27 21:48 [PATCH 2.6.9] Fix menuconfig on Solaris Tom Rini
2004-10-30 22:16 ` Sam Ravnborg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®