From: Eric Anholt Date: Fri, 17 Sep 2004 05:10:33 +0000 (+0000) Subject: Symbol names are prepended with an underscore on CYGWIN as well. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6616146698834eb99d1413b6ca400bc47aa0d217;p=mesa.git Symbol names are prepended with an underscore on CYGWIN as well. X.Org Bugzilla: 1079 Submitted by: Alexander Gottwald --- 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 */ -#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)