From 03fd396286caf885730e0be0f0a97b74d953032e Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 1 Mar 2014 16:58:22 -0500 Subject: [PATCH] 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. --- libs/surfaces/osc/wscript | 4 ++-- 1 file 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'