summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-10-04 04:01:45 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-10-04 04:01:45 +0000
commit5798a32b1733f63e694d3038d73c0039afe79bbc (patch)
tree4d5e20084c4b5d70c6826656cfec340c511ce723 /configure.in
parentc5add0e0a42f75c216565cedf5e39532c56f33bb (diff)
downloadirssi-5798a32b1733f63e694d3038d73c0039afe79bbc.zip
curses fixes
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@720 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index ed254911..62a2111b 100644
--- a/configure.in
+++ b/configure.in
@@ -233,7 +233,7 @@ if test "x$want_textui" = "xyes"; then
AC_CHECK_LIB(ncurses, wresize, [
AC_DEFINE(HAVE_CURSES_WRESIZE)
],, $CURSES_LIBS)
- else
+ elif test "x$has_curses" = "xtrue"; then
AC_CHECK_LIB(curses, idcok, [
AC_DEFINE(HAVE_CURSES_IDCOK)
],, $CURSES_LIBS)
@@ -243,9 +243,7 @@ if test "x$want_textui" = "xyes"; then
AC_CHECK_LIB(curses, wresize, [
AC_DEFINE(HAVE_CURSES_WRESIZE)
],, $CURSES_LIBS)
- fi
-
- if test "$has_curses" != "true"; then
+ else
want_textui=no
curses_error=yes
fi