summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-03-01 16:58:22 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-03-01 16:58:22 -0500
commit03fd396286caf885730e0be0f0a97b74d953032e (patch)
treeee339c8915ecada937006ecf6091bf117d3cf6c1
parent560c667ea9164e826a0afaba744b403667441828 (diff)
fix a related-to-last-commit problem in build script for OSC support
This would have had the effect of hiding -DPACKAGE="ardour_osc" but since there is no i18n stuff in our OSC support, it really had no effect.
-rw-r--r--libs/surfaces/osc/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/osc/wscript b/libs/surfaces/osc/wscript
index a00663e977..a63b580e12 100644
--- a/libs/surfaces/osc/wscript
+++ b/libs/surfaces/osc/wscript
@@ -27,10 +27,10 @@ def build(bld):
interface.cc
'''
obj.export_includes = ['.']
- obj.defines = [ 'PACKAGE="ardour_osc"' ]
+ obj.defines = [ 'PACKAGE="ardour_osc"' ]
+ obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
obj.includes = ['.', './osc']
obj.name = 'libardour_osc'
- obj.defines = [ 'ARDOURSURFACE_DLL_EXPORTS' ]
obj.target = 'ardour_osc'
obj.uselib = ' LO '
obj.use = 'libardour libardour_cp libpbd'