aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2011-04-09 07:48:58 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2011-04-09 07:48:58 +0000
commit75f218dc73a19ac6de9d2270aab43f83c5bb8816 (patch)
treec42e66152d915a0c8be7722fad21d2064835986a /configure.ac
parent1d00f88757b623977eb82c85b823dc4ca0cc4d62 (diff)
downloadrtmux-75f218dc73a19ac6de9d2270aab43f83c5bb8816.tar.gz
rtmux-75f218dc73a19ac6de9d2270aab43f83c5bb8816.tar.bz2
rtmux-75f218dc73a19ac6de9d2270aab43f83c5bb8816.zip
If the terminal supports sitm for italics, use it instead of standout
(smso). From Tiago Resende.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index afbabaf6..2da3b1df 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.15 2011-02-11 23:31:15 nicm Exp $
+# $Id: configure.ac,v 1.16 2011-04-09 07:48:58 nicm Exp $
# Miscellaneous autofoo bullshit.
AC_INIT(tmux, 1.5)
@@ -101,7 +101,7 @@ AC_MSG_RESULT($found_glibc)
AC_CHECK_LIB(rt, clock_gettime)
# Look for libevent.
-AC_SEARCH_LIBS(event_init, event, found_libevent=yes, found_libevent=no)
+AC_SEARCH_LIBS(event_init, [event event-1.4 event2], found_libevent=yes, found_libevent=no)
if test "x$found_libevent" = xno; then
AC_MSG_ERROR("libevent not found")
fi