Revision: 39689
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39689
Author:   jensverwiebe
Date:     2011-08-25 09:41:36 +0000 (Thu, 25 Aug 2011)
Log Message:
-----------
OSX/scons: don?\194?\180t link to system stubs with 10.7 sdk

Modified Paths:
--------------
    trunk/blender/build_files/scons/config/darwin-config.py

Modified: trunk/blender/build_files/scons/config/darwin-config.py
===================================================================
--- trunk/blender/build_files/scons/config/darwin-config.py     2011-08-25 
07:30:12 UTC (rev 39688)
+++ trunk/blender/build_files/scons/config/darwin-config.py     2011-08-25 
09:41:36 UTC (rev 39689)
@@ -316,7 +316,11 @@
                PLATFORM_LINKFLAGS = 
PLATFORM_LINKFLAGS+['-framework','QuickTime']
 
 #note to build succesfully on 10.3.9 SDK you need to patch  10.3.9 by adding 
the SystemStubs.a lib from 10.4
-LLIBS = ['stdc++', 'SystemStubs']
+#for 10.7.sdk, SystemStubs needs to be excluded (lib doesn't exist anymore)
+if MACOSX_DEPLOYMENT_TARGET == '10.7':
+       LLIBS = ['stdc++']
+else:
+       LLIBS = ['stdc++', 'SystemStubs']
 
 # some flags shuffling for different OS versions
 if MAC_MIN_VERS == '10.3':

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to