diff options
author | Bernhard Reutner-Fischer | 2010-05-21 11:47:45 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2010-05-21 11:49:11 +0200 |
commit | e91bc53d0c2e8de7dc4fbdb888ab0a4923c2b475 (patch) | |
tree | f832a3b7ed1158d1651708f521d44d5dd6a54624 /scripts/kconfig/lxdialog | |
parent | 4f2c59b267a4840986c95e22bd302b4216bfb8cf (diff) | |
download | busybox-e91bc53d0c2e8de7dc4fbdb888ab0a4923c2b475.zip busybox-e91bc53d0c2e8de7dc4fbdb888ab0a4923c2b475.tar.gz |
lxdialog: fix ncursesw include detection
the lib was checked but the include not, do so.
TODO: check if upstream fixed that already or fix it there, too.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'scripts/kconfig/lxdialog')
-rw-r--r-- | scripts/kconfig/lxdialog/check-lxdialog.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/kconfig/lxdialog/check-lxdialog.sh b/scripts/kconfig/lxdialog/check-lxdialog.sh index 5552154..acabe38 100644 --- a/scripts/kconfig/lxdialog/check-lxdialog.sh +++ b/scripts/kconfig/lxdialog/check-lxdialog.sh @@ -19,7 +19,11 @@ ldflags() # Where is ncurses.h? ccflags() { - if [ -f /usr/include/ncurses/ncurses.h ]; then + if [ -f /usr/include/ncursesw/ncurses.h ]; then + echo '-I/usr/include/ncursesw -DCURSES_LOC="<ncurses.h>"' + elif [ -f /usr/include/ncursesw/curses.h ]; then + echo '-I/usr/include/ncursesw -DCURSES_LOC="<ncursesw/curses.h>"' + elif [ -f /usr/include/ncurses/ncurses.h ]; then echo '-I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>"' elif [ -f /usr/include/ncurses/curses.h ]; then echo '-I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"' |