Fix Windows build problems.
authorAlan Hourihane <alanh@tungstengraphics.com>
Wed, 24 Aug 2005 09:08:06 +0000 (09:08 +0000)
committerAlan Hourihane <alanh@tungstengraphics.com>
Wed, 24 Aug 2005 09:08:06 +0000 (09:08 +0000)
GCC's visibility attribute is for ELF systems, so undef INTERNAL
GCC's fastcall attribute interferes with __stdcall so undef FASTCALL

src/glx/x11/indirect_size.c
src/glx/x11/indirect_size.h

index b8886e48591e76700d873202b105759287715119..bd89cec00f19142f1a2ca6c2fd62663f9aaa25e6 100644 (file)
@@ -47,7 +47,6 @@
 #    define INTERNAL
 #  endif
 
-
 #ifdef HAVE_ALIAS
 #  define ALIAS2(from,to) \
     INTERNAL PURE FASTCALL GLint __gl ## from ## _size( GLenum e ) \
     { return __gl ## to ## _size( e ); }
 #endif
 
+#  if defined(__CYGWIN__) || defined(WIN32)
+#    undef FASTCALL
+#    define FASTCALL
+#    undef HAVE_ALIAS
+#    undef INTERNAL
+#    define INTERNAL
+#  endif
 
 INTERNAL PURE FASTCALL GLint
 __glCallLists_size( GLenum e )
index ba7fc35b24baa0ef758c3bfb61e0b40942073f81..090d0a2e9266e334b438aaca1195ef724a1b59c5 100644 (file)
 #    define INTERNAL
 #  endif
 
+#  if defined(__CYGWIN__) || defined(WIN32)
+#    undef FASTCALL
+#    define FASTCALL
+#    undef INTERNAL
+#    define INTERNAL
+#  endif
+
 extern INTERNAL PURE FASTCALL GLint __glCallLists_size(GLenum);
 extern INTERNAL PURE FASTCALL GLint __glFogfv_size(GLenum);
 extern INTERNAL PURE FASTCALL GLint __glFogiv_size(GLenum);