summaryrefslogtreecommitdiffstats
path: root/src/client/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-10-01 16:58:33 +0000
committerDavid Robillard <d@drobilla.net>2008-10-01 16:58:33 +0000
commitd58eba655118adfa3c24ae74fb06eab5dedb9397 (patch)
tree974a795eb9525f44ba29043c059a479bf0bd0228 /src/client/wscript
parenta6f5b04414bd6ffce5f0aae0be9216e0b2fe2fad (diff)
downloadingen-d58eba655118adfa3c24ae74fb06eab5dedb9397.tar.gz
ingen-d58eba655118adfa3c24ae74fb06eab5dedb9397.tar.bz2
ingen-d58eba655118adfa3c24ae74fb06eab5dedb9397.zip
Fix building without libsoup.
Documentation building either globally or per project. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1574 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/wscript')
-rw-r--r--src/client/wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/wscript b/src/client/wscript
index 9a010b84..319da3fb 100644
--- a/src/client/wscript
+++ b/src/client/wscript
@@ -15,16 +15,16 @@ def build(bld):
client.cpp
'''
- if bld.env()['HAVE_SOUP']:
+ if bld.env()['HAVE_SOUP'] == 1:
obj.source += '''
HTTPClientReceiver.cpp
HTTPEngineSender.cpp
'''
-
- if bld.env()['HAVE_XML2']:
+
+ if bld.env()['HAVE_XML2'] == 1:
obj.source += ' DeprecatedLoader.cpp '
- if bld.env()['HAVE_LIBLO']:
+ if bld.env()['HAVE_LIBLO'] == 1:
obj.source += ' OSCClientReceiver.cpp OSCEngineSender.cpp '
obj.includes = ['..', '../common']