fix compilation of libcanvas so that when built as a shared lib (the default), -DLIBCANVAS_DLL_EXPORTS=1 is not lost

This commit is contained in:
Paul Davis 2014-03-01 16:52:08 -05:00
parent 952aeea4e9
commit 560c667ea9
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ def build(bld):
obj.target = 'canvas'
obj.vnum = CANVAS_LIB_VERSION
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
obj.defines = [ 'PACKAGE="' + I18N_PACKAGE + '"' ]
obj.defines += [ 'PACKAGE="' + I18N_PACKAGE + '"' ]
if bld.env['BUILD_TESTS'] and bld.env['HAVE_CPPUNIT']: