Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Verwiebe <info@jensverwiebe.de>2011-08-25 18:49:47 +0400
committerJens Verwiebe <info@jensverwiebe.de>2011-08-25 18:49:47 +0400
commit8b6dfade4d9a91e2e20958ab7ce567532cc1443e (patch)
treef6b4e5d3143db7b40b1d1d293c81a6103baaca8b /SConstruct
parent3b1192431faf031bf55b362934fb0b6a52ea65e4 (diff)
OSX: fix condition for NDOF linking
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 7f11397a286..75b88c36e4c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -272,7 +272,7 @@ if env['OURPLATFORM']=='darwin':
# for now, Mac builders must download and install the 3DxWare 10 Beta 4 driver framework from 3Dconnexion
# necessary header file lives here when installed:
# /Library/Frameworks/3DconnexionClient.framework/Versions/Current/Headers/ConnexionClientAPI.h
- if env['WITH_BF_3DMOUSE'] == 1 and not os.path.exists('/Library/Frameworks/3DconnexionClient.framework'):
+ if not os.path.exists('/Library/Frameworks/3DconnexionClient.framework'):
print "3D_CONNEXION_CLIENT_LIBRARY not found, disabling WITH_BF_3DMOUSE" # avoid build errors !
env['WITH_BF_3DMOUSE'] = 0
else: