mark dbus reservation tool optional

This commit is contained in:
Robin Gareus 2014-06-05 03:26:52 +02:00
parent 3813c7afae
commit 27f8fc90cf
2 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,7 @@ def configure(conf):
autowaf.configure(conf)
if re.search ("linux", sys.platform) != None and Options.options.dist_target != 'mingw':
autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA')
autowaf.check_pkg(conf, 'dbus-1', uselib_store='DBUS')
autowaf.check_pkg(conf, 'dbus-1', uselib_store='DBUS', mandatory = False)
def build(bld):
if re.search ("linux", sys.platform) != None:

View File

@ -789,6 +789,7 @@ const char* const ardour_config_info = "\\n\\
write_config_text('Library exports hidden', conf.is_defined('EXPORT_VISIBILITY_HIDDEN'))
write_config_text('ALSA Backend', opts.build_alsabackend)
write_config_text('ALSA DBus Reservation', conf.is_defined('HAVE_DBUS'))
write_config_text('Architecture flags', opts.arch)
write_config_text('Aubio', conf.is_defined('HAVE_AUBIO'))
write_config_text('AudioUnits', conf.is_defined('AUDIOUNIT_SUPPORT'))