Advertisement
h3xx

ardour3-svn_vamp+rubberband+soundtouch_use_syslibs_and_do_not_build.patch

Oct 26th, 2011
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 2.83 KB | None | 0 0
  1. Index: ardour3/wscript
  2. ===================================================================
  3. --- ardour3/wscript (revision 10813)
  4. +++ ardour3/wscript (working copy)
  5. @@ -19,11 +19,11 @@
  6.          'libs/pbd',
  7.          'libs/midi++2',
  8.          'libs/evoral',
  9. -        'libs/vamp-sdk',
  10. +        #'libs/vamp-sdk',
  11.          'libs/qm-dsp',
  12.          'libs/vamp-plugins',
  13. -        'libs/taglib',
  14. -        'libs/rubberband',
  15. +        #'libs/taglib',
  16. +        #'libs/rubberband',
  17.          'libs/surfaces',
  18.          'libs/panners',
  19.          'libs/timecode',
  20. @@ -517,6 +517,10 @@
  21.      autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.14.0')
  22.      autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18')
  23.      autowaf.check_pkg(conf, 'giomm-2.4', uselib_store='GIOMM', atleast_version='2.2')
  24. +    autowaf.check_pkg(conf, 'taglib', uselib_store='TAGLIB')
  25. +    autowaf.check_pkg(conf, 'rubberband', uselib_store='RUBBERBAND')
  26. +    autowaf.check_pkg(conf, 'vamp-sdk', uselib_store='VAMPSDK')
  27. +    autowaf.check_pkg(conf, 'vamp-hostsdk', uselib_store='VAMPHOSTSDK')
  28.  
  29.      for i in children:
  30.          sub_config_and_use(conf, i)
  31. @@ -629,13 +633,13 @@
  32.      # add directories that contain only headers, to workaround an issue with waf
  33.  
  34.      bld.path.find_dir ('libs/evoral/evoral')
  35. -    bld.path.find_dir ('libs/vamp-sdk/vamp-sdk')
  36. +    #bld.path.find_dir ('libs/vamp-sdk/vamp-sdk')
  37.      bld.path.find_dir ('libs/surfaces/control_protocol/control_protocol')
  38.      bld.path.find_dir ('libs/timecode/timecode')
  39. -    bld.path.find_dir ('libs/rubberband/rubberband')
  40. +    #bld.path.find_dir ('libs/rubberband/rubberband')
  41.      bld.path.find_dir ('libs/gtkmm2ext/gtkmm2ext')
  42.      bld.path.find_dir ('libs/ardour/ardour')
  43. -    bld.path.find_dir ('libs/taglib/taglib')
  44. +    #bld.path.find_dir ('libs/taglib/taglib')
  45.      bld.path.find_dir ('libs/pbd/pbd')
  46.  
  47.      autowaf.set_recursive()
  48. Index: ardour3/libs/ardour/wscript
  49. ===================================================================
  50. --- ardour3/libs/ardour/wscript (revision 10813)
  51. +++ ardour3/libs/ardour/wscript (working copy)
  52. @@ -355,9 +355,9 @@
  53.      obj.target       = 'ardour'
  54.      obj.uselib       = ['GLIBMM','GTHREAD','AUBIO','SIGCPP','XML','UUID',
  55.                          'JACK','SNDFILE','SAMPLERATE','LRDF','AUDIOUNITS',
  56. -                        'OSX','BOOST','CURL','DL']
  57. -    obj.use          = ['libpbd','libmidipp','libevoral','libvamphost',
  58. -                        'libvampplugin','libtaglib','librubberband',
  59. +                        'OSX','BOOST','CURL','DL','TAGLIB','RUBBERBAND',
  60. +           'VAMPSDK','VAMPHOSTSDK']
  61. +    obj.use          = ['libpbd','libmidipp','libevoral',
  62.                          'libaudiographer']
  63.      obj.vnum         = LIBARDOUR_LIB_VERSION
  64.      obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement