From d14313b7afdd682bda6934e1fa9f35e7119ddaab Mon Sep 17 00:00:00 2001 From: Leonardo Taccari Date: Sun, 23 Jul 2017 17:38:55 +0200 Subject: build: fix curses library/pkg-config name Gracefully fallback to curses(3) (no libcurses `.pc' file is present and `-l$libcurses' is used and hence `-lcurses' (not `-llibcurses'!)). --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 37498ff..fe8af69 100755 --- a/configure +++ b/configure @@ -310,7 +310,7 @@ int main(int argc, char *argv[]) { } EOF - for libcurses in ncursesw ncurses libcurses; do + for libcurses in ncursesw ncurses curses; do printf " checking for %s... " "$libcurses" if test "$have_pkgconfig" = "yes" ; then -- cgit v1.2.3