Browse Source

mesa: Remove assyntax.h include from generated matypes.h.

matypes.h doesn't really depend on assyntax.h; assyntax.h is only present
on x86; and this way we remove the need of grep being available (which is
relevant for scons and non-unix platforms).
(cherry picked from commit fc286ff3ba)
tags/mesa_7_3_rc1
José Fonseca 17 years ago
parent
commit
3474e9de92

+ 1
- 1
src/mesa/x86-64/Makefile View File

@@ -24,6 +24,6 @@ clean:

# need some special rules here, unfortunately
matypes.h: ../main/mtypes.h ../tnl/t_context.h ../x86/gen_matypes
../x86/gen_matypes | grep -v '#include "assyntax.h' > matypes.h
../x86/gen_matypes > matypes.h

xform4.o: matypes.h

+ 1
- 0
src/mesa/x86/3dnow_normal.S View File

@@ -30,6 +30,7 @@

#ifdef USE_3DNOW_ASM

#include "assyntax.h"
#include "matypes.h"
#include "norm_args.h"


+ 1
- 0
src/mesa/x86/3dnow_xform1.S View File

@@ -25,6 +25,7 @@
*/

#ifdef USE_3DNOW_ASM
#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


+ 1
- 0
src/mesa/x86/3dnow_xform2.S View File

@@ -25,6 +25,7 @@
*/

#ifdef USE_3DNOW_ASM
#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


+ 1
- 0
src/mesa/x86/3dnow_xform3.S View File

@@ -25,6 +25,7 @@
*/

#ifdef USE_3DNOW_ASM
#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


+ 1
- 0
src/mesa/x86/3dnow_xform4.S View File

@@ -25,6 +25,7 @@
*/

#ifdef USE_3DNOW_ASM
#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


+ 0
- 1
src/mesa/x86/gen_matypes.c View File

@@ -92,7 +92,6 @@ int main( int argc, char **argv )
printf( "#ifndef __ASM_TYPES_H__\n" );
printf( "#define __ASM_TYPES_H__\n" );
printf( "\n" );
printf( "#include \"assyntax.h\"\n" );


/* GLcontext offsets:

+ 2
- 1
src/mesa/x86/mmx_blend.S View File

@@ -1,10 +1,11 @@
;
/*
* Written by José Fonseca <j_r_fonseca@yahoo.co.uk>
* Written by Jos� Fonseca <j_r_fonseca@yahoo.co.uk>
*/


#ifdef USE_MMX_ASM
#include "assyntax.h"
#include "matypes.h"

/* integer multiplication - alpha plus one

+ 1
- 0
src/mesa/x86/sse_normal.S View File

@@ -32,6 +32,7 @@
*/

#ifdef USE_SSE_ASM
#include "assyntax.h"
#include "matypes.h"
#include "norm_args.h"


+ 1
- 0
src/mesa/x86/sse_xform1.S View File

@@ -32,6 +32,7 @@
*/

#ifdef USE_SSE_ASM
#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


+ 1
- 0
src/mesa/x86/sse_xform2.S View File

@@ -32,6 +32,7 @@
*/

#ifdef USE_SSE_ASM
#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


+ 1
- 0
src/mesa/x86/sse_xform3.S View File

@@ -32,6 +32,7 @@
*/

#ifdef USE_SSE_ASM
#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


+ 1
- 0
src/mesa/x86/sse_xform4.S View File

@@ -25,6 +25,7 @@
*/

#ifdef USE_SSE_ASM
#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


+ 1
- 0
src/mesa/x86/x86_cliptest.S View File

@@ -30,6 +30,7 @@
* in there will break the build on some platforms.
*/

#include "assyntax.h"
#include "matypes.h"
#include "clip_args.h"


+ 1
- 0
src/mesa/x86/x86_xform2.S View File

@@ -30,6 +30,7 @@
* in there will break the build on some platforms.
*/

#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


+ 1
- 0
src/mesa/x86/x86_xform3.S View File

@@ -30,6 +30,7 @@
* in there will break the build on some platforms.
*/

#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


+ 1
- 0
src/mesa/x86/x86_xform4.S View File

@@ -30,6 +30,7 @@
* in there will break the build on some platforms.
*/

#include "assyntax.h"
#include "matypes.h"
#include "xform_args.h"


Loading…
Cancel
Save