mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
YTK is no longer optional
Since the addition of the touch-API, Ardour is no longer compatible with upstream gtk2.
This commit is contained in:
parent
fdfdde093d
commit
1e28ee9cc9
9 changed files with 46 additions and 84 deletions
|
|
@ -50,14 +50,10 @@ def options(opt):
|
|||
pass
|
||||
|
||||
def configure(conf):
|
||||
if conf.is_defined('YTK'):
|
||||
autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.28', mandatory=True)
|
||||
autowaf.check_pkg(conf, 'gobject-2.0', uselib_store='GOBJECT', mandatory=True)
|
||||
autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.28', mandatory=True)
|
||||
autowaf.check_pkg(conf, 'gobject-2.0', uselib_store='GOBJECT', mandatory=True)
|
||||
|
||||
def build(bld):
|
||||
if not bld.is_defined('YTK'):
|
||||
return
|
||||
|
||||
obj = bld.shlib(features = 'c cshlib', source = libztk_sources)
|
||||
obj.cflags = [ bld.env['compiler_flags_dict']['pic'] ]
|
||||
obj.export_includes = ['ztk']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue