mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 18:48:28 +02:00
Fix Windows build problems.
GCC's visibility attribute is for ELF systems, so undef INTERNAL GCC's fastcall attribute interferes with __stdcall so undef FASTCALL
This commit is contained in:
parent
334f2d8077
commit
c58cea0085
2 changed files with 14 additions and 1 deletions
|
|
@ -47,7 +47,6 @@
|
|||
# define INTERNAL
|
||||
# endif
|
||||
|
||||
|
||||
#ifdef HAVE_ALIAS
|
||||
# define ALIAS2(from,to) \
|
||||
INTERNAL PURE FASTCALL GLint __gl ## from ## _size( GLenum e ) \
|
||||
|
|
@ -59,6 +58,13 @@
|
|||
{ 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 )
|
||||
|
|
|
|||
|
|
@ -54,6 +54,13 @@
|
|||
# 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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue