scons: Don't build the assembly sources on Mac OS X.
authorVinson Lee <vlee@freedesktop.org>
Sun, 19 Feb 2012 07:43:03 +0000 (23:43 -0800)
committerVinson Lee <vlee@freedesktop.org>
Sat, 25 Feb 2012 08:25:43 +0000 (00:25 -0800)
This patch allows the Mac OS X SCons build to complete. The assembly
sources contain psuedo-ops that not are supported on Mac OS X.

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: José Fonseca <jfonseca@vmware.com>
src/mapi/glapi/SConscript
src/mesa/SConscript

index 9882806ce6072f1a21cb0460a9e49442a6f7882e..4097a7fe13894a556c381ec1ec8244b3ead5f849 100644 (file)
@@ -46,7 +46,7 @@ for s in mapi_sources:
 #
 # Assembly sources
 #
-if env['gcc'] and env['platform'] != 'windows':
+if env['gcc'] and env['platform'] not in ('darwin', 'windows'):
     if env['machine'] == 'x86':
         env.Append(CPPDEFINES = [
             'USE_X86_ASM',
index e9b1f6aaf2f150511d3852a66ae2c524edb655c1..10a04689df5cbf232014072ab2cf7c56ce5d4ed1 100644 (file)
@@ -384,7 +384,7 @@ if env['gles']:
 #
 # Assembly sources
 #
-if env['gcc'] and env['platform'] != 'windows':
+if env['gcc'] and env['platform'] not in ('darwin', 'windows'):
     if env['machine'] == 'x86':
         env.Append(CPPDEFINES = [
             'USE_X86_ASM',