summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@blame.services>2022-11-17 17:49:16 +0100
committerDave Davenport <qball@blame.services>2022-11-17 17:49:16 +0100
commit96e81d1b56b1bbc61be8ee720937dd0f0abfd4ad (patch)
tree383ef9615d9c9ef3bddb9e0b079679e9a2d785cc
parent0bbccc31370f6b86e72b26da1afcd6a21e3cc9a8 (diff)
Disable imdkit by default
-rw-r--r--configure.ac4
-rw-r--r--meson_options.txt2
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index a84c8a36..908b2f80 100644
--- a/configure.ac
+++ b/configure.ac
@@ -148,9 +148,9 @@ AC_DEFINE_UNQUOTED([GLIB_VERSION_MAX_ALLOWED], [(G_ENCODE_VERSION(${glib_min_maj
GW_CHECK_XCB([xcb-aux xcb-xkb xkbcommon xkbcommon-x11 xcb-ewmh xcb-icccm xcb-cursor xcb-randr xcb-xinerama ])
-AC_ARG_ENABLE([imdkit], AS_HELP_STRING([--disable-imdkit], [Build with checks using check library (default: enabled)]))
+AC_ARG_ENABLE([imdkit], AS_HELP_STRING([--enable-imdkit], [Build with checks using check library (default: disabled)]))
-AS_IF([test "x${enable_imdkit}" != "xno"], [
+AS_IF([test "x${enable_imdkit}" = "xyes"], [
PKG_CHECK_MODULES([imdclient], [xcb-imdkit <= 1.0.2 ],
[AC_DEFINE([XCB_IMDKIT_1_0_3_LOWER], [1], [Indicate lower version of imdclient])
AC_DEFINE([XCB_IMDKIT],[1], [IMD Kit missing])],
diff --git a/meson_options.txt b/meson_options.txt
index 9ca68fc6..519ea3cc 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,4 +1,4 @@
option('drun', type: 'boolean', value: true, description: 'Desktop file mode')
option('window', type: 'boolean', value: true, description: 'Window switcher mode')
option('check', type: 'feature', description: 'Build and run libcheck-based tests')
-option('imdkit', type: 'boolean', value: true, description: 'IMDKit support')
+option('imdkit', type: 'boolean', value: false, description: 'IMDKit support')