Also use pkg-config for regular ncurses

This commit is contained in:
Sijmen J. Mulder 2018-12-16 17:59:20 +01:00
parent f257cda04a
commit 599f4e82b7
1 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,9 @@ CFLAGS += $(CFLAGS_OPTIMIZATION)
ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1)
CFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw)
LDLIBS += $(shell $(PKG_CONFIG) --libs ncursesw)
else ifeq ($(shell $(PKG_CONFIG) ncurses && echo 1),1)
CFLAGS += $(shell $(PKG_CONFIG) --cflags ncurses)
LDLIBS += $(shell $(PKG_CONFIG) --libs ncurses)
else
LDLIBS += -lncurses
endif