mesa: Don't use rtasm for Haiku swrast

* We have a symbol conflict as rtasm in
  Mesa collides with rtasm in gallium.
* As us linking gallium and mesa together
  is an edge case, lets just omit the rtasm
  code from Mesa as we should be going
  llvmpipe soon :)
This commit is contained in:
Alexander von Gluck IV 2013-01-06 16:06:37 -06:00
parent 4332f6fc18
commit b9227b3e15
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ env.Depends(glget_sources, get_hash_header)
#
# Assembly sources
#
if env['gcc'] and env['platform'] not in ('cygwin', 'darwin', 'windows'):
if env['gcc'] and env['platform'] not in ('cygwin', 'darwin', 'windows', 'haiku'):
if env['machine'] == 'x86':
env.Append(CPPDEFINES = [
'USE_X86_ASM',