From 964c85a061f11df2113ff59022db8bc0efc8d250 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 17 Jan 2015 21:09:37 +0100 Subject: [PATCH] fix 20ea90a1 for winegcc --- gtk2_ardour/wscript | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript index 4e520ff5c4..57637e7a2a 100644 --- a/gtk2_ardour/wscript +++ b/gtk2_ardour/wscript @@ -368,7 +368,7 @@ def build(bld): # 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 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? # @@ -381,7 +381,6 @@ def build(bld): 'libgtk2_ardour', 'libgtkmm2ext', 'libcanvas', - 'vstwin' ] obj.target = 'ardour-' + str (bld.env['VERSION']) + '-vst.exe.so' obj.includes = [ '../libs/fst', '.' ]