Symbol names are prepended with an underscore on CYGWIN as well.
authorEric Anholt <anholt@FreeBSD.org>
Fri, 17 Sep 2004 05:10:33 +0000 (05:10 +0000)
committerEric Anholt <anholt@FreeBSD.org>
Fri, 17 Sep 2004 05:10:33 +0000 (05:10 +0000)
X.Org Bugzilla: 1079
Submitted by: Alexander Gottwald <ago@freedesktop.org>

src/mesa/tnl/t_vtx_x86_gcc.S

index fcc69f1d0d196222f73676382a1004af4cdf9075..5f79197f7e5a50ce88acb56f47456d729a3f8b13 100644 (file)
@@ -31,15 +31,15 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
  *   Daniel Borca <dborca@yahoo.com>
  */
 
-#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)