summaryrefslogtreecommitdiffstats
path: root/src/socket
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-08 02:18:55 +0000
committerDavid Robillard <d@drobilla.net>2014-08-08 02:18:55 +0000
commit3a7904dd967a245ee9f53bc368d0494bd64adae2 (patch)
tree3bde5c6de26e09c42f558c512b2ceb8e73ff072f /src/socket
parent32b6e2f295b2aa5f01afe31115d4aac62feedc09 (diff)
downloadingen-3a7904dd967a245ee9f53bc368d0494bd64adae2.tar.gz
ingen-3a7904dd967a245ee9f53bc368d0494bd64adae2.tar.bz2
ingen-3a7904dd967a245ee9f53bc368d0494bd64adae2.zip
Fix compilation with non-standard LV2 location.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5420 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/socket')
-rw-r--r--src/socket/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/socket/wscript b/src/socket/wscript
index 008b55a4..488bb7d9 100644
--- a/src/socket/wscript
+++ b/src/socket/wscript
@@ -12,7 +12,7 @@ def build(bld):
target = 'ingen_socket_server',
install_path = '${LIBDIR}',
use = 'libingen_server')
- autowaf.use_lib(bld, obj, 'GLIBMM SERD SORD SRATOM RAUL')
+ autowaf.use_lib(bld, obj, 'GLIBMM SERD SORD SRATOM RAUL LV2')
obj = bld(features = 'cxx cxxshlib',
source = ['SocketReader.cpp',
@@ -23,4 +23,4 @@ def build(bld):
target = 'ingen_socket_client',
install_path = '${LIBDIR}',
use = 'libingen_server')
- autowaf.use_lib(bld, obj, 'GLIBMM SERD SORD SRATOM RAUL')
+ autowaf.use_lib(bld, obj, 'GLIBMM SERD SORD SRATOM RAUL LV2')