summaryrefslogtreecommitdiffstats
path: root/include/GL/glu.h
diff options
context:
space:
mode:
authorzhang <[email protected]>2007-06-28 08:10:09 -0600
committerBrian <[email protected]>2007-06-28 08:10:09 -0600
commit52e25f63d401506bcca8ac7f524974bbde68f5fd (patch)
tree79603b49ac49d5334a3cddd7d8774114e751b81f /include/GL/glu.h
parentf3fb67972bbbf87f5aaaf029df6070fbaee3b594 (diff)
a variety of fixes for MingW
Diffstat (limited to 'include/GL/glu.h')
-rw-r--r--include/GL/glu.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/GL/glu.h b/include/GL/glu.h
index c0bac75a8cc..d82103d141a 100644
--- a/include/GL/glu.h
+++ b/include/GL/glu.h
@@ -44,6 +44,19 @@
#define GLAPIENTRYP GLAPIENTRY *
#endif
+#ifdef GLAPI
+#undef GLAPI
+#endif
+
+# if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GLU32)
+# define GLAPI __declspec(dllexport)
+# elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL) /* tag specifying we're building for DLL runtime support */
+# define GLAPI __declspec(dllimport)
+# else /* for use with static link lib build of Win32 edition only */
+# define GLAPI extern
+# endif /* _STATIC_MESA support */
+
+
#ifndef GLAPI
#define GLAPI
#endif