From 6a8a367cbdb33cf3ed08ab9813c80d9ad258384a Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Mon, 14 Sep 2015 17:51:59 +0200 Subject: Disable i3 support when window mode disabled. --- configure.ac | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index a7790e79..b605522a 100644 --- a/configure.ac +++ b/configure.ac @@ -18,16 +18,6 @@ AM_PROG_CC_C_O AC_USE_SYSTEM_EXTENSIONS -## -# I3 check -## -AC_ARG_ENABLE(i3support, - [AS_HELP_STRING([--disable-i3support], [Disable check for i3 support])]) -if test "x$enable_i3support" != xno; -then - AC_CHECK_HEADERS([i3/ipc.h], - [i3_header=yes; break;]) -fi dnl --------------------------------------------------------------------- @@ -50,6 +40,15 @@ AS_IF([ test "x$enable_windowmode" != "xno"], [ AC_DEFINE([WINDOW_MODE],[1],[Enable the window mode]) ]) +## +# I3 check +## +AC_ARG_ENABLE(i3support, + [AS_HELP_STRING([--disable-i3support], [Disable check for i3 support])]) +AS_IF([test "x$enable_i3support" != xno && test "x$enable_windowmode" != "xno"],[ + AC_CHECK_HEADERS([i3/ipc.h], [i3_header=yes; break;]) +]) + ## # Check dependencies ## -- cgit v1.2.3