diff options
author | Daniel Borca <[email protected]> | 2003-10-23 13:28:05 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2003-10-23 13:28:05 +0000 |
commit | 79fa6b98818bc0e6e1bfb221aeccbe3b08d7ae8a (patch) | |
tree | ec627b8c60ab9db49b0763522d00cfedac5d95dd /src/mesa/glapi/glx86asm.py | |
parent | 76692c5ce2a5fab129c91f870e9b9459edd9838e (diff) |
more MinGW fixes
Diffstat (limited to 'src/mesa/glapi/glx86asm.py')
-rw-r--r-- | src/mesa/glapi/glx86asm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/glapi/glx86asm.py b/src/mesa/glapi/glx86asm.py index f070c23ea18..c061e46a35d 100644 --- a/src/mesa/glapi/glx86asm.py +++ b/src/mesa/glapi/glx86asm.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# $Id: glx86asm.py,v 1.8 2003/10/22 21:02:15 kendallb Exp $ +# $Id: glx86asm.py,v 1.9 2003/10/23 13:28:06 dborca Exp $ # Mesa 3-D graphics library # Version: 4.1 @@ -54,7 +54,7 @@ def PrintHead(): print '' print '#define GL_OFFSET(x) CODEPTR(REGOFF(4 * x, EAX))' print '' - print '#if defined(GNU_ASSEMBLER) && !defined(DJGPP)' + print '#if defined(GNU_ASSEMBLER) && !defined(__DJGPP__) && !defined(__MINGW32__)' print '#define GLOBL_FN(x) GLOBL x ; .type x,@function' print '#else' print '#define GLOBL_FN(x) GLOBL x' |