summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-07-06 08:34:47 +0200
committerDave Davenport <qball@gmpclient.org>2016-07-06 08:34:47 +0200
commit342192b4ede8d4b63853ca28218d56a2fdfa3d8a (patch)
tree602b8af174881545087f5a355cd0d1909fd4dfe2 /configure.ac
parentdfc952f5709420fe873c163c00a6848b9c822aa9 (diff)
Remove work-around for older i3 version (< 4.9)
- I3 got ewhm support in Feb. 2015.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 0 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac
index 54deace0..f052eec5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,13 +65,6 @@ AC_ARG_ENABLE([timings], AC_HELP_STRING([--enable-timings],[Enable timing output
AS_IF( [ test "x$enable_timings" = "xyes"], [AC_DEFINE([TIMINGS],[1], [Enable timings output])])
dnl ---------------------------------------------------------------------
-dnl I3 check
-dnl ---------------------------------------------------------------------
-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;])])
-
-
-dnl ---------------------------------------------------------------------
dnl Check for C functions.
dnl ---------------------------------------------------------------------
AC_CHECK_FUNC([getline],, AC_MSG_ERROR("Could not find getline in c library"))
@@ -113,11 +106,6 @@ dnl -----------------------------------------------
echo ""
echo "-------------------------------------"
-if test x$i3_header = xyes; then
-echo "I3 support: Enabled"
-else
-echo "I3 support: Disabled"
-fi
if test x$enable_timings = xyes; then
echo "Timing output: Enabled"
else