summaryrefslogtreecommitdiffstats
path: root/src/client/wscript
diff options
context:
space:
mode:
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']