13
0

Print more configuration summary stuff (sound libs).

git-svn-id: svn://localhost/ardour2/branches/3.0@4700 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2009-02-27 02:32:53 +00:00
parent ca28b2460a
commit c54fe0e7cd
2 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,7 @@ def configure(conf):
autowaf.check_pkg(conf, 'soundtouch-1.0', uselib_store='SOUNDTOUCH', mandatory=False)
conf.env.append_value('CXXFLAGS', '-DUSE_RUBBERBAND')
conf.define('HAVE_RUBBERBAND', 1)
check_header_and_define(conf, 'sys/vfs.h', 'HAVE_SYS_VFS_H')
check_header_and_define(conf, 'wordexp.h', 'HAVE_WORDEXP')

View File

@ -142,6 +142,9 @@ def configure(conf):
autowaf.display_msg(conf, 'Freesound', opts.freesound)
autowaf.display_msg(conf, 'GtkOSX', opts.gtkosx)
autowaf.display_msg(conf, 'LV2 Support', bool(conf.env['HAVE_SLV2']))
autowaf.display_msg(conf, 'Rubberband', bool(conf.env['HAVE_RUBBERBAND']))
autowaf.display_msg(conf, 'Samplerate', bool(conf.env['HAVE_SAMPLERATE']))
autowaf.display_msg(conf, 'Soundtouch', bool(conf.env['HAVE_SOUNDTOUCH']))
autowaf.display_msg(conf, 'Translation', opts.nls)
autowaf.display_msg(conf, 'Surfaces', opts.surfaces)
autowaf.display_msg(conf, 'System Libraries', opts.syslibs)