aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-01-11 18:07:38 +0000
committerEric Andersen <andersen@codepoet.org>2003-01-11 18:07:38 +0000
commit575c78274a7458cc9459c6e07c5ff33a103c3f3c (patch)
treea1542adf1298d5dcda129abd5de9076bacf85e5c /scripts
parentb1c9469f65261aff2f2dc7b46cdb4864a728e951 (diff)
downloadbusybox-575c78274a7458cc9459c6e07c5ff33a103c3f3c.tar.gz
Patch from Robert Schwebel -- support ncurses installed in /usr/local
Diffstat (limited to 'scripts')
-rw-r--r--scripts/config/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/config/Makefile b/scripts/config/Makefile
index 002b8d547..ab3df4993 100644
--- a/scripts/config/Makefile
+++ b/scripts/config/Makefile
@@ -14,6 +14,12 @@ else
ifeq (/usr/include/ncurses/curses.h, $(wildcard /usr/include/ncurses/curses.h))
HOSTNCURSES += -I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"
else
+ifeq (/usr/local/include/ncurses/ncurses.h, $(wildcard /usr/local/include/ncurses/ncurses.h))
+ HOSTCFLAGS += -I/usr/local/include/ncurses -DCURSES_LOC="<ncurses.h>"
+else
+ifeq (/usr/local/include/ncurses/curses.h, $(wildcard /usr/local/include/ncurses/curses.h))
+ HOSTCFLAGS += -I/usr/local/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"
+else
ifeq (/usr/include/ncurses.h, $(wildcard /usr/include/ncurses.h))
HOSTNCURSES += -DCURSES_LOC="<ncurses.h>"
else
@@ -21,7 +27,8 @@ else
endif
endif
endif
-
+endif
+endif
CONF_SRC =conf.c
MCONF_SRC =mconf.c checklist.c menubox.c textbox.c yesno.c inputbox.c util.c msgbox.c