summaryrefslogtreecommitdiff
path: root/scripts
authorkergoth <kergoth>2003-06-20 20:59:30 (UTC)
committer kergoth <kergoth>2003-06-20 20:59:30 (UTC)
commitfde32755685bec14851f943be337e94675caf0c4 (patch) (unidiff)
treed5a87565767420f0b9da18fd2ee80407b6ec1b7e /scripts
parentec80e207cce9ebb55be771603fc47a4e7892fd6c (diff)
downloadopie-fde32755685bec14851f943be337e94675caf0c4.zip
opie-fde32755685bec14851f943be337e94675caf0c4.tar.gz
opie-fde32755685bec14851f943be337e94675caf0c4.tar.bz2
Dump warning message when unable to locate the ncurses/curses header.
Diffstat (limited to 'scripts') (more/less context) (ignore whitespace changes)
-rw-r--r--scripts/lxdialog/Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/scripts/lxdialog/Makefile b/scripts/lxdialog/Makefile
index b34bbc3..6d05cfd 100644
--- a/scripts/lxdialog/Makefile
+++ b/scripts/lxdialog/Makefile
@@ -3,19 +3,25 @@ HOST_LOADLIBES := -lncurses
3HOSTCC = gcc 3HOSTCC = gcc
4 4
5ifeq (/usr/include/ncurses/ncurses.h, $(wildcard /usr/include/ncurses/ncurses.h)) 5ifeq (/usr/include/ncurses/ncurses.h, $(wildcard /usr/include/ncurses/ncurses.h))
6 HOST_EXTRACFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>" 6HOST_EXTRACFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>"
7else 7else
8ifeq (/usr/include/ncurses/curses.h, $(wildcard /usr/include/ncurses/curses.h)) 8ifeq (/usr/include/ncurses/curses.h, $(wildcard /usr/include/ncurses/curses.h))
9 HOST_EXTRACFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>" 9HOST_EXTRACFLAGS += -I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"
10else 10else
11ifeq (/usr/include/ncurses.h, $(wildcard /usr/include/ncurses.h)) 11ifeq (/usr/include/ncurses.h, $(wildcard /usr/include/ncurses.h))
12 HOST_EXTRACFLAGS += -DCURSES_LOC="<ncurses.h>" 12HOST_EXTRACFLAGS += -DCURSES_LOC="<ncurses.h>"
13else 13else
14 HOST_EXTRACFLAGS += -DCURSES_LOC="<curses.h>" 14HOST_EXTRACFLAGS += -DCURSES_LOC="<curses.h>"
15endif 15endif
16endif 16endif
17endif 17endif
18 18
19ifeq ($(filter clean mrproper distclean,$(MAKECMDGOALS)),)
20ifeq ($(filter -DCURSES_LOC%,$(HOST_EXTRACFLAGS)),)
21$(error Unable to locate ncurses.h or curses.h)
22endif
23endif
24
19 host-progs:= lxdialog 25 host-progs:= lxdialog
20 always := $(host-progs) 26 always := $(host-progs)
21 27