aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-sampler.lv2/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-06 19:56:17 +0000
committerDavid Robillard <d@drobilla.net>2011-11-06 19:56:17 +0000
commitee319f2c45766164eab47e0b5949c80e0c464ada (patch)
treea712daf36829045b316f545f9c3de49b32092236 /plugins/eg-sampler.lv2/wscript
parent2d06cd3e754f37c79c707a27d22dc27db72495ec (diff)
downloadlv2-ee319f2c45766164eab47e0b5949c80e0c464ada.tar.xz
Use new urid and atom extensions instead of uri-map and event.
Diffstat (limited to 'plugins/eg-sampler.lv2/wscript')
-rw-r--r--plugins/eg-sampler.lv2/wscript11
1 files changed, 5 insertions, 6 deletions
diff --git a/plugins/eg-sampler.lv2/wscript b/plugins/eg-sampler.lv2/wscript
index 9dd0b61..70273c3 100644
--- a/plugins/eg-sampler.lv2/wscript
+++ b/plugins/eg-sampler.lv2/wscript
@@ -13,19 +13,18 @@ top = '.'
out = 'build'
def options(opt):
- autowaf.set_options(opt)
opt.load('compiler_c')
+ autowaf.set_options(opt)
def configure(conf):
- autowaf.configure(conf)
-
+ conf.load('compiler_c')
conf.line_just = 51
+ autowaf.configure(conf)
autowaf.display_header('Sampler Configuration')
- conf.load('compiler_c')
autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/lv2core/lv2.h')
- autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/ext/event/event-helpers.h')
- autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/ext/uri-map/uri-map.h')
+ autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/ext/atom/atom-buffer.h')
+ autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/ext/urid/urid.h')
autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/ext/persist/persist.h')
autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE',
atleast_version='1.0.0', mandatory=True)