13
0

fix 20ea90a1 for winegcc

This commit is contained in:
Robin Gareus 2015-01-17 21:09:37 +01:00
parent d2cbb28f79
commit 964c85a061

View File

@ -368,7 +368,7 @@ def build(bld):
# If we require VST support we build a stub main() and the FST library # If we require VST support we build a stub main() and the FST library
# here using winegcc, and link it to the GTK front-end library # here using winegcc, and link it to the GTK front-end library
obj = bld (features = 'cxx c cxxprogram wine') obj = bld (features = 'cxx c cxxprogram wine')
obj.source = ( '../vst/winmain.c') obj.source = ( '../libs/fst/vstwin.c', '../vst/winmain.c' )
# #
# XXX do we really need to explicitly link to all of these for the wine executable? # XXX do we really need to explicitly link to all of these for the wine executable?
# #
@ -381,7 +381,6 @@ def build(bld):
'libgtk2_ardour', 'libgtk2_ardour',
'libgtkmm2ext', 'libgtkmm2ext',
'libcanvas', 'libcanvas',
'vstwin'
] ]
obj.target = 'ardour-' + str (bld.env['VERSION']) + '-vst.exe.so' obj.target = 'ardour-' + str (bld.env['VERSION']) + '-vst.exe.so'
obj.includes = [ '../libs/fst', '.' ] obj.includes = [ '../libs/fst', '.' ]