bi: D-Bus isn't supposed to be an option on non-X11 platforms

This commit is contained in:
Ignacio R. Morelle 2015-07-14 01:09:00 -03:00
parent 00ad4fd9e5
commit 93a544e584

View file

@ -201,11 +201,15 @@ version_table_manager::version_table_manager()
features.back().enabled = true;
#endif
#ifdef _X11
features.push_back(N_("feature^D-Bus notifications back end"));
#ifdef HAVE_LIBDBUS
features.back().enabled = true;
#endif
#endif /* _X11 */
#ifdef _WIN32
// Always compiled in.
features.push_back(N_("feature^Win32 notifications back-end"));