current SVN HEAD 1212 doesn't compile on Solaris because of broken system headers
under /usr/openwin/include/GL. There is no easy way to either get SUN to fix them or suggest that libsdl would have more sun-specific stuff so I'm proposing the following (protected) change to sdl_gimp.c. It makes ioquake3 compile again on Solaris:
Index: quake3-Solaris_SVN1212/trunk/code/sdl/sdl_glimp.c
===================================================================
--- quake3-Solaris_SVN1212/trunk/code/sdl/sdl_glimp.c (revision 1212)
+++ quake3-Solaris_SVN1212/trunk/code/sdl/sdl_glimp.c (working copy)
@@ -62,6 +62,13 @@
#define GLimp_SetCurrentContext(ctx)
#endif
+/* Hack because of SUN's broken GL Headers */
+#ifdef __sun
+typedef void (APIENTRY * PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t);
+typedef void (APIENTRY * PFNGLACTIVETEXTUREARBPROC) (GLenum texture);
+typedef void (APIENTRY * PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture);
+#endif
+
static QGLContext opengl_context;
typedef enum
The PFNGL* types should no longer be necessary as of r1217. Nevertheless, getting Sun to fix their headers would benefit everyone, if you can be bothered.
Created attachment 1583 [details] Proposed Patch