From c0346701dfa2a4aa4c2ea6f05157406bcfb7a50b Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 16 Jan 2017 18:20:50 +0000 Subject: [PATCH] Fix VIS_DQ check. --- configure.ac | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 59589514..86f26aed 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # configure.ac -AC_INIT(tmux, 2.4) +AC_INIT(tmux, master) AC_CONFIG_AUX_DIR(etc) AM_INIT_AUTOMAKE([foreign subdir-objects]) @@ -452,8 +452,12 @@ if test "x$found_stravis" = xyes; then AC_CHECK_DECL( VIS_DQ, , - [found_stravis=no]), - [#include ]) + found_stravis=no, + [ + #include + #include + ] +) fi if test "x$found_stravis" = xyes; then AC_DEFINE(HAVE_VIS)