diff options
author | Timo Sirainen <cras@irssi.org> | 2000-07-18 23:42:51 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-07-18 23:42:51 +0000 |
commit | d72f3bf8db10c270b6dfe0ba220f7b1b5224223a (patch) | |
tree | 13d156561c91db629d4b727edba663c135739a04 /curses.m4 | |
parent | d7e017a819e731a469214f2916172e131bf2d9c2 (diff) | |
download | irssi-d72f3bf8db10c270b6dfe0ba220f7b1b5224223a.zip |
bugfix
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@491 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'curses.m4')
-rw-r--r-- | curses.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -212,7 +212,8 @@ AC_DEFUN(AC_NCURSES, [ AC_MSG_RESULT(Found ncurses on $1/$2) CURSES_LIBS="$3" - AC_CHECK_LIB(ncurses, initscr,, [ + AC_CHECK_LIB(ncurses, initscr, [ + ], [ CHECKLIBS=`echo "$3"|sed 's/-lncurses/-lcurses/g'` AC_CHECK_LIB(curses, initscr, [ CURSES_LIBS="$CHECKLIBS" |