move LXVST GUI stuff into gtk2_ardour, and fix X11 uselib stuff in wscripts

git-svn-id: svn://localhost/ardour2/branches/3.0@10565 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-11-13 14:53:49 +00:00
parent f60c9d52dc
commit 8e2858e555
4 changed files with 5 additions and 7 deletions

File diff suppressed because it is too large Load diff

View file

@ -269,8 +269,6 @@ def configure(conf):
atleast_version='1.2.1')
autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL',
atleast_version='7.0.0')
autowaf.check_pkg(conf, 'x11', uselib_store='X11',
atleast_version='1.4', mandatory=False)
# we don't try to detect this, since its part of our source tree
@ -389,9 +387,8 @@ def build(bld):
obj.defines += [ 'VST_SUPPORT' ]
if bld.is_defined('LXVST_SUPPORT'):
obj.source += [ 'lxvst_plugin.cc', 'session_lxvst.cc', 'vstfx.cc', 'vstfxwin.cc', 'vstfxinfofile.cc' ]
obj.source += [ 'lxvst_plugin.cc', 'session_lxvst.cc', 'vstfx.cc', 'vstfxinfofile.cc' ]
obj.defines += [ 'LXVST_SUPPORT' ]
obj.uselib += ['X11']
if bld.is_defined('HAVE_COREAUDIO'):
obj.source += [ 'coreaudiosource.cc', 'caimportable.cc' ]