diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-05-21 06:59:49 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-05-21 06:59:49 -0600 |
commit | 13a2be4446bd6612b5b56dab1cb9d8975a4f6f1f (patch) | |
tree | 363b2498a402a501254091ebb48c1619480e9970 /src/mesa | |
parent | f869ddf29771253e9f7634384a7354eb14f4cadd (diff) |
mesa: fix #include path for glapioffsets.h (fixes x86 build)
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/glapi/gl_x86_asm.py | 2 | ||||
-rw-r--r-- | src/mesa/x86/glapi_x86.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/glapi/gl_x86_asm.py b/src/mesa/glapi/gl_x86_asm.py index 403e87261b..651cb03f14 100644 --- a/src/mesa/glapi/gl_x86_asm.py +++ b/src/mesa/glapi/gl_x86_asm.py @@ -51,7 +51,7 @@ class PrintGenericStubs(gl_XML.gl_print_base): def printRealHeader(self): print '#include "assyntax.h"' - print '#include "glapioffsets.h"' + print '#include "glapi/glapioffsets.h"' print '' print '#if defined(STDCALL_API)' print '# if defined(USE_MGL_NAMESPACE)' diff --git a/src/mesa/x86/glapi_x86.S b/src/mesa/x86/glapi_x86.S index 9a5d875e21..b99c2b6520 100644 --- a/src/mesa/x86/glapi_x86.S +++ b/src/mesa/x86/glapi_x86.S @@ -27,7 +27,7 @@ */ #include "assyntax.h" -#include "glapioffsets.h" +#include "glapi/glapioffsets.h" #if defined(STDCALL_API) # if defined(USE_MGL_NAMESPACE) |