From 6616146698834eb99d1413b6ca400bc47aa0d217 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 17 Sep 2004 05:10:33 +0000 Subject: Symbol names are prepended with an underscore on CYGWIN as well. X.Org Bugzilla: 1079 Submitted by: Alexander Gottwald --- src/mesa/tnl/t_vtx_x86_gcc.S | 6 +++--- 1 file 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 fcc69f1d0d..5f79197f7e 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 */ -#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) -- cgit v1.2.3