summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-05-18 02:19:27 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-05-18 02:19:27 +0000
commit60fbeedb5f819b42fdca1f8175319aa2a9bca4c1 (patch)
tree53f2768aff3fa2d94d03b6a4c953f67b5141a0c2 /SConstruct
parentb3b383faa5ca4e2a101314612d69b05184edc422 (diff)
a) basic prototype of OSC control
b) various changes to ControlProtocol model/implementation c) more attempts to get autoscroll to work nicely (unfinished) d) move editor item types into their own header git-svn-id: svn://localhost/trunk/ardour2@506 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct15
1 files changed, 15 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 807643df6e..f8093e4f6f 100644
--- a/SConstruct
+++ b/SConstruct
@@ -419,6 +419,19 @@ else:
libraries['usb'] = conf.Finish ()
#
+# Check for liblo
+
+libraries['lo'] = LibraryInfo ()
+
+conf = Configure (libraries['lo'])
+if conf.CheckLib ('lo', 'lo_server_new'):
+ have_liblo = True
+else:
+ have_liblo = False
+
+libraries['lo'] = conf.Finish ()
+
+#
# Check for dmalloc
libraries['dmalloc'] = LibraryInfo ()
@@ -558,6 +571,8 @@ if env['SURFACES']:
surface_subdirs += [ 'libs/surfaces/generic_midi' ]
if have_libusb:
surface_subdirs += [ 'libs/surfaces/tranzport' ]
+ if have_liblo:
+ surface_subdirs += [ 'libs/surfaces/osc' ]
opts.Save('scache.conf', env)
Help(opts.GenerateHelpText(env))