diff options
author | Eric Anholt <[email protected]> | 2004-09-17 05:10:33 +0000 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2004-09-17 05:10:33 +0000 |
commit | 6616146698834eb99d1413b6ca400bc47aa0d217 (patch) | |
tree | ba8ff12930df24d11dca06001ceecf047f1efb3a /src/mesa/tnl/t_vtx_x86_gcc.S | |
parent | a511b70f44378368ebf0db5479b66a82dee2ca4f (diff) |
Symbol names are prepended with an underscore on CYGWIN as well.
X.Org Bugzilla: 1079
Submitted by: Alexander Gottwald <[email protected]>
Diffstat (limited to 'src/mesa/tnl/t_vtx_x86_gcc.S')
-rw-r--r-- | src/mesa/tnl/t_vtx_x86_gcc.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_vtx_x86_gcc.S b/src/mesa/tnl/t_vtx_x86_gcc.S index fcc69f1d0d1..5f79197f7e5 100644 --- a/src/mesa/tnl/t_vtx_x86_gcc.S +++ b/src/mesa/tnl/t_vtx_x86_gcc.S @@ -31,15 +31,15 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. * Daniel Borca <[email protected]> */ -#if defined (__DJGPP__) || defined (__MINGW32__) +#if defined (__DJGPP__) || defined (__MINGW32__) || defined (__CYGWIN__) #define GLOBL( x ) \ .globl _##x; \ _##x: -#else /* !defined (__DJGPP__) && !defined (__MINGW32__) */ +#else /* !defined (__DJGPP__) && !defined (__MINGW32__) && !defined (__CYGWIN__) */ #define GLOBL( x ) \ .globl x; \ x: -#endif /* !defined (__DJGPP__) && !defined (__MINGW32__) */ +#endif /* !defined (__DJGPP__) && !defined (__MINGW32__) && !defined (__CYGWIN__) */ #if !defined (STDCALL_API) |