1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00

Disable i3 support when window mode disabled.

This commit is contained in:
Dave Davenport 2015-09-14 17:51:59 +02:00
parent a645da701f
commit 6a8a367cbd

View file

@ -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
##