mirror of
https://github.com/tmux/tmux.git
synced 2025-01-05 23:38:48 +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.
|
# Miscellaneous autofoo bullshit.
|
||||||
AC_INIT(tmux, 1.5)
|
AC_INIT(tmux, 1.5)
|
||||||
@ -96,8 +96,12 @@ if test "x$found_libevent" = xno; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Look for curses.
|
# Look for curses.
|
||||||
AC_SEARCH_LIBS(setupterm, [terminfo curses ncurses], found_curses=yes,
|
AC_SEARCH_LIBS(
|
||||||
found_curses = no)
|
setupterm,
|
||||||
|
[terminfo curses ncurses],
|
||||||
|
found_curses=yes,
|
||||||
|
found_curses=no
|
||||||
|
)
|
||||||
if test "x$found_curses" = xno; then
|
if test "x$found_curses" = xno; then
|
||||||
AC_MSG_ERROR("curses not found")
|
AC_MSG_ERROR("curses not found")
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user