wscript: remove trailing whitespace

This commit is contained in:
Mads Kiilerich 2022-01-25 00:23:43 +01:00
parent 4cec4a659b
commit 06f8936a73
8 changed files with 8 additions and 11 deletions

View File

@ -116,4 +116,3 @@ def build(bld):
if re.search ("linux", sys.platform) != None:
obj.uselib += [ 'ALSA' ]

View File

@ -161,7 +161,6 @@ def build(bld):
manual_testobj.target = target
manual_testobj.install_path = ''
def shutdown():
autowaf.shutdown()

View File

@ -15,7 +15,7 @@ def options(opt):
def configure(conf):
autowaf.check_pkg(conf, 'lv2', atleast_version='1.0.0',
uselib_store='LV2_1_0_0')
autowaf.check_pkg(conf, 'cairo', uselib_store='CAIRO', atleast_version='1.12.0')
autowaf.check_pkg(conf, 'cairo', uselib_store='CAIRO', atleast_version='1.12.0')
def build(bld):
bundle = 'a-delay.lv2'

View File

@ -15,7 +15,7 @@ def options(opt):
def configure(conf):
autowaf.check_pkg(conf, 'lv2', atleast_version='1.0.0',
uselib_store='LV2_1_0_0')
autowaf.check_pkg(conf, 'cairo', uselib_store='CAIRO', atleast_version='1.12.0')
autowaf.check_pkg(conf, 'cairo', uselib_store='CAIRO', atleast_version='1.12.0')
def build(bld):
bundle = 'a-eq.lv2'

View File

@ -35,7 +35,7 @@ def build(bld):
obj = bld.stdlib (source = [ 'ptformat.cc' ])
obj.cxxflags = [ bld.env['compiler_flags_dict']['pic'] ]
obj.cflags = [ bld.env['compiler_flags_dict']['pic'] ]
obj.export_includes = ['.']
obj.includes = ['.']
obj.name = 'libptformat'
@ -45,6 +45,6 @@ def build(bld):
obj.vnum = LIBPTFORMAT_LIB_VERSION
obj.install_path = bld.env['LIBDIR']
obj.defines += [ 'PACKAGE="' + I18N_PACKAGE + '"' ]
def shutdown():
autowaf.shutdown()

View File

@ -8,11 +8,11 @@ out = 'build'
def options(opt):
autowaf.set_options(opt)
def configure(conf):
autowaf.check_pkg(conf, 'pangomm-1.4', uselib_store='PANGOMM', atleast_version='1.4', mandatory=True)
autowaf.check_pkg(conf, 'cairomm-1.0', uselib_store='CAIROMM', atleast_version='1.8.4', mandatory=True)
def build(bld):
obj = bld(features = 'cxx cxxshlib')
obj.source = '''

View File

@ -24,7 +24,7 @@ APPNAME = 'temporal'
VERSION = TEMPORAL_VERSION
I18N_PACKAGE = 'libtemporal'
temporal_sources = [
temporal_sources = [
'debug.cc',
'bbt_time.cc',
'beats.cc',

View File

@ -84,4 +84,3 @@ def build(bld):
def shutdown():
autowaf.shutdown()