diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2014-12-01 15:03:26 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2014-12-01 15:03:26 +0000 |
commit | 1fc8e1c8417ebcc9a4ef681c9d03efa09909aa34 (patch) | |
tree | 3ac95497ae9615309daec5022906bed921ffbe35 /acinclude.m4 | |
parent | Merge branch 'bug/gtk2-pkg-config' (diff) | |
parent | Add tinfo to with_termlib (diff) | |
download | w3m-1fc8e1c8417ebcc9a4ef681c9d03efa09909aa34.tar.gz w3m-1fc8e1c8417ebcc9a4ef681c9d03efa09909aa34.zip |
Merge branch 'bug/tinfo'
Diffstat (limited to '')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index d768476..94fcbb5 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -400,10 +400,10 @@ AC_DEFUN([AC_W3M_TERMLIB], AC_ARG_WITH(termlib, [ --with-termlib[=LIBS] terminal library LIBS is space separated list of: - terminfo mytinfo termcap ncurses curses],, + terminfo mytinfo termcap tinfo ncurses curses],, [with_termlib="yes"]) AC_MSG_RESULT($with_termlib) - test x"$with_termlib" = xyes && with_termlib="terminfo mytinfo termlib termcap ncurses curses" + test x"$with_termlib" = xyes && with_termlib="terminfo mytinfo termlib termcap tinfo ncurses curses" for lib in $with_termlib; do AC_CHECK_LIB($lib, tgetent, [W3M_LIBS="$W3M_LIBS -l$lib"; break]) done |