mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Disable imdkit by default
This commit is contained in:
parent
0bbccc3137
commit
96e81d1b56
2 changed files with 3 additions and 3 deletions
|
@ -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])],
|
||||
|
|
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue