Unbreak Linux builds with -fvisibility=hidden.

This commit is contained in:
Adam Jackson
2007-08-23 18:38:02 -04:00
parent 4b654d41da
commit 1f8616e622

View File

@@ -44,22 +44,17 @@
#define GLAPIENTRYP GLAPIENTRY * #define GLAPIENTRYP GLAPIENTRY *
#endif #endif
#ifdef GLAPI #if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GLU32)
#undef GLAPI # undef GLAPI
#endif # define GLAPI __declspec(dllexport)
#elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL)
# if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GLU32) /* tag specifying we're building for DLL runtime support */
# define GLAPI __declspec(dllexport) # undef GLAPI
# elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL) /* tag specifying we're building for DLL runtime support */ # define GLAPI __declspec(dllimport)
# define GLAPI __declspec(dllimport) #elif !defined(GLAPI)
# else /* for use with static link lib build of Win32 edition only */ /* for use with static link lib build of Win32 edition only */
# define GLAPI extern # define GLAPI extern
# endif /* _STATIC_MESA support */ #endif /* _STATIC_MESA support */
#ifndef GLAPI
#define GLAPI
#endif
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {