diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-07-23 21:06:01 +0900 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-07-24 21:24:10 +0900 |
commit | 101d1a658a614d1e2ec02b1e697f6161291af653 (patch) | |
tree | 1dab9e796d0917fd6b699465086b3b5629024a77 /src/mesa/x86 | |
parent | fd6865c7e5c3c38c273b8269ff30a1acec469b6f (diff) | |
download | external_mesa3d-101d1a658a614d1e2ec02b1e697f6161291af653.zip external_mesa3d-101d1a658a614d1e2ec02b1e697f6161291af653.tar.gz external_mesa3d-101d1a658a614d1e2ec02b1e697f6161291af653.tar.bz2 |
mesa: Prefix main includes with dir to avoid conflicts.
Some of the headers in src/mesa/main have pretty common names which
easily conflict with third-party code, e.g. config.h
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/3dnow.c | 4 | ||||
-rw-r--r-- | src/mesa/x86/common_x86.c | 2 | ||||
-rw-r--r-- | src/mesa/x86/rtasm/x86sse.c | 2 | ||||
-rw-r--r-- | src/mesa/x86/sse.c | 4 | ||||
-rw-r--r-- | src/mesa/x86/x86.c | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/x86/3dnow.c b/src/mesa/x86/3dnow.c index 4122ee4..c037a61 100644 --- a/src/mesa/x86/3dnow.c +++ b/src/mesa/x86/3dnow.c @@ -28,8 +28,8 @@ * Holger Waechtler <holger@akaflieg.extern.tu-berlin.de> */ -#include "glheader.h" -#include "context.h" +#include "main/glheader.h" +#include "main/context.h" #include "math/m_xform.h" #include "tnl/t_context.h" diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index 0caa36a..dc80d26 100644 --- a/src/mesa/x86/common_x86.c +++ b/src/mesa/x86/common_x86.c @@ -49,7 +49,7 @@ #endif #include "common_x86_asm.h" -#include "imports.h" +#include "main/imports.h" int _mesa_x86_cpu_features = 0; diff --git a/src/mesa/x86/rtasm/x86sse.c b/src/mesa/x86/rtasm/x86sse.c index 7a91364..5c4bab7 100644 --- a/src/mesa/x86/rtasm/x86sse.c +++ b/src/mesa/x86/rtasm/x86sse.c @@ -1,7 +1,7 @@ #ifdef USE_X86_ASM #if defined(__i386__) || defined(__386__) -#include "imports.h" +#include "main/imports.h" #include "x86sse.h" #define DISASSEM 0 diff --git a/src/mesa/x86/sse.c b/src/mesa/x86/sse.c index 4b016a1..1c18538 100644 --- a/src/mesa/x86/sse.c +++ b/src/mesa/x86/sse.c @@ -27,8 +27,8 @@ * Andre Werthmann <wertmann@cs.uni-potsdam.de> */ -#include "glheader.h" -#include "context.h" +#include "main/glheader.h" +#include "main/context.h" #include "math/m_xform.h" #include "tnl/t_context.h" diff --git a/src/mesa/x86/x86.c b/src/mesa/x86/x86.c index 82caa42..ce649f6 100644 --- a/src/mesa/x86/x86.c +++ b/src/mesa/x86/x86.c @@ -27,8 +27,8 @@ * Intel x86 assembly code by Josh Vanderhoof */ -#include "glheader.h" -#include "context.h" +#include "main/glheader.h" +#include "main/context.h" #include "math/m_xform.h" #include "tnl/t_context.h" |