summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Gniazdowski <sgniazdowski@gmail.com>2019-08-27 04:32:15 +0200
committerPeter Stephenson <p.stephenson@samsung.com>2019-08-27 10:35:07 +0100
commit2e87c3f3fb4a46fc1341c9c342652ae96acd6228 (patch)
treeebe03210bd15cce173d6c1f110af944a599d1142
parent2b41606fe7b57c33ca05e13e2ab7a3409456889e (diff)
downloadzsh-2e87c3f3fb4a46fc1341c9c342652ae96acd6228.tar.gz
zsh-2e87c3f3fb4a46fc1341c9c342652ae96acd6228.zip
44712: Prefer any variety of ncurses to other terminal libraries.
We rely on its features to provide modules where it is available.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2ca039058..366087122 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2019-08-27 Peter Stephenson <p.stephenson@samsung.com>
+
+ * Sebastian: 44712: configure.ac: prefer any form of ncurses to
+ other terminal library as we rely on its features to provide
+ modules.
+
2019-08-19 Oliver Kiddle <okiddle@yahoo.co.uk>
* 44614: Completion/Debian/Command/_apt: apt list option completion
diff --git a/configure.ac b/configure.ac
index 8a2664ed2..9ccf17b84 100644
--- a/configure.ac
+++ b/configure.ac
@@ -774,7 +774,7 @@ AS_HELP_STRING([--with-term-lib=LIBS],[search space-separated LIBS for terminal
termcap_curses_order="$withval"
AC_SEARCH_LIBS(tigetstr, [$termcap_curses_order])
else
- termcap_curses_order="$ncursesw_test tinfo termcap $ncurses_test curses"
+ termcap_curses_order="$ncursesw_test $ncurses_test tinfo termcap curses"
fi],
[case "$host_os" in
solaris*)
@@ -783,7 +783,7 @@ fi],
DL_EXT="${DL_EXT=sl}"
termcap_curses_order="Hcurses $ncursesw_test $ncurses_test curses termcap" ;;
*)
- termcap_curses_order="$ncursesw_test tinfo termcap $ncurses_test curses" ;;
+ termcap_curses_order="$ncursesw_test $ncurses_test tinfo termcap curses" ;;
esac])dnl
AH_TEMPLATE([ZSH_NO_XOPEN],