mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 01:48:47 +00:00
Wrap long line differently.
This commit is contained in:
parent
703baa8769
commit
edc298d0a1
10
configure.ac
10
configure.ac
@ -1,4 +1,4 @@
|
||||
# $Id: configure.ac,v 1.5 2011-01-02 15:45:43 nicm Exp $
|
||||
# $Id: configure.ac,v 1.6 2011-01-02 15:49:31 nicm Exp $
|
||||
|
||||
# Miscellaneous autofoo bullshit.
|
||||
AC_INIT(tmux, 1.5)
|
||||
@ -96,8 +96,12 @@ if test "x$found_libevent" = xno; then
|
||||
fi
|
||||
|
||||
# Look for curses.
|
||||
AC_SEARCH_LIBS(setupterm, [terminfo curses ncurses], found_curses=yes,
|
||||
found_curses = no)
|
||||
AC_SEARCH_LIBS(
|
||||
setupterm,
|
||||
[terminfo curses ncurses],
|
||||
found_curses=yes,
|
||||
found_curses=no
|
||||
)
|
||||
if test "x$found_curses" = xno; then
|
||||
AC_MSG_ERROR("curses not found")
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user