implement methods in TempoMap for walking a given distance along a tempo map and...
[ardour.git] / libs / rubberband / wscript
index 2ef9155dfbc62e545c71171e28317704ada02673..765a807ba81cf730078715cfa903b13ea7219d6b 100644 (file)
@@ -25,22 +25,7 @@ def set_options(opt):
 
 def configure(conf):
        autowaf.configure(conf)
-       autowaf.check_tool(conf, 'compiler_cxx')
-       autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
-       autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP', atleast_version='2.0')
-       autowaf.check_pkg(conf, 'uuid', uselib_store='UUID')
-
-       conf.check(function_name='getmntent', header_name='mntent.h', define_name='HAVE_GETMNTENT')
-
-       # This must be defined for librubberband only, it breaks ardour
-       conf.check(header_name='execinfo.h', define_name='PBD_HAVE_EXECINFO')
-
-       conf.env.append_value('CXXFLAGS', '-DHAVE_WAFCONFIG_H')
-       conf.write_config_header('wafconfig.h')
-
-       # Boost headers
-       autowaf.check_header(conf, 'boost/shared_ptr.hpp')
-       autowaf.check_header(conf, 'boost/weak_ptr.hpp')
+       conf.check_tool('compiler_cxx')
 
 def build(bld):
        # Library
@@ -58,8 +43,8 @@ def build(bld):
        obj.uselib_local = 'libvamphost'
        obj.vnum         = LIBRUBBERBAND_LIB_VERSION
        obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
-       obj.cxxflags     = '-DPACKAGE=\\\"librubberband\\\"'
-       
+       obj.cxxflags     = '-DPACKAGE="librubberband"'
+
 def shutdown():
        autowaf.shutdown()