mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
apparently some systems may have ncurses that doesn't provide backwards compat
with curses. So, check for both and use whatever is found git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22346 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1,6 +1,14 @@
|
||||
MENUSELECT_OBJS=menuselect.o menuselect_curses.o ../strcompat.o
|
||||
MENUSELECT_CFLAGS=-g -c -D_GNU_SOURCE -I../ -I../include/
|
||||
MENUSELECT_LIBS=../mxml/libmxml.a $(CURSES_LIB)
|
||||
MENUSELECT_LIBS=../mxml/libmxml.a
|
||||
|
||||
ifneq ($(NCURSES_LIB),)
|
||||
MENUSELECT_LIBS+=$(NCURSES_LIB)
|
||||
MENUSELECT_INCLUDE=$(NCURSES_INCLUDE)
|
||||
else
|
||||
MENUSELECT_LIBS+=$(CURSES_LIB)
|
||||
MENUSELECT_INCLUDE=$(CURSES_INCLUDE)
|
||||
endif
|
||||
|
||||
menuselect: $(MENUSELECT_OBJS)
|
||||
$(CC) -g -o $@ $(MENUSELECT_OBJS) $(MENUSELECT_LIBS)
|
||||
@@ -9,7 +17,7 @@ menuselect.o: menuselect.c menuselect.h
|
||||
$(CC) -o $@ $(MENUSELECT_CFLAGS) $<
|
||||
|
||||
menuselect_curses.o: menuselect_curses.c menuselect.h
|
||||
$(CC) -o $@ $(MENUSELECT_CFLAGS) $(CURSES_INCLUDE) $<
|
||||
$(CC) -o $@ $(MENUSELECT_CFLAGS) $(MENUSELECT_INCLUDE) $<
|
||||
|
||||
clean:
|
||||
rm -f menuselect *.o
|
||||
|
Reference in New Issue
Block a user