From 9b89dd796717d5d7549cfe5ab4a7e78c38726659 Mon Sep 17 00:00:00 2001 From: Mads Kiilerich Date: Thu, 27 Jan 2022 17:39:49 +0100 Subject: [PATCH] wscript: drop liblo check in libs/surfaces - it is already mandatory in top level wscript --- libs/surfaces/wscript | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libs/surfaces/wscript b/libs/surfaces/wscript index 779fd5d68d..e62eec2610 100644 --- a/libs/surfaces/wscript +++ b/libs/surfaces/wscript @@ -28,6 +28,7 @@ children = [ 'mackie', 'us2400', 'launch_control_xl', + 'osc', ] def options(opt): @@ -57,9 +58,6 @@ def configure(conf): children += [ 'maschine2' ] conf.define('BUILD_MASCHINE', 1) - if autowaf.check_pkg (conf, 'liblo', mandatory=False, uselib_store="LO", atleast_version="0.24"): - children += [ 'osc' ] - conf.check_cc (header_name='cwiid.h', define_name='HAVE_CWIID_H',mandatory=False) if conf.is_defined('HAVE_CWIID_H'): conf.check_cc (header_name='bluetooth/bluetooth.h', define_name='HAVE_BLUETOOTH_H',mandatory=False) @@ -93,8 +91,6 @@ def build(bld): bld.recurse('us2400') bld.recurse('launch_control_xl') - if bld.is_defined ('HAVE_LO'): - bld.recurse('osc') if bld.is_defined('BUILD_WIIMOTE'): bld.recurse('wiimote') if bld.is_defined('BUILD_TRANZPORT'):