From e4eb0cb7e756bcaa7479673b829892745a3d0433 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 9 Jul 2000 15:45:55 +0000 Subject: [PATCH] Check that -lncurses is actually found - if not, try -lcurses. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@453 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- curses.m4 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/curses.m4 b/curses.m4 index 595c47b7..e92949e1 100644 --- a/curses.m4 +++ b/curses.m4 @@ -210,7 +210,14 @@ AC_DEFUN(AC_NCURSES, [ if test -f $1/$2 then AC_MSG_RESULT(Found ncurses on $1/$2) - CURSES_LIBS="$3" + + CURSES_LIBS="$3" + AC_CHECK_LIB(ncurses, initscr,, [ + CHECKLIBS=`echo "$3"|sed 's/-lncurses/-lcurses/g'` + AC_CHECK_LIB(curses, initscr, [ + CURSES_LIBS="$CHECKLIBS" + ],, $CHECKLIBS) + ], $CURSES_LIBS) CURSES_INCLUDEDIR="$4" search_ncurses=false screen_manager=$5