Bug 3430 - Changes to main sdl_gimp.c for SunOS(Solaris)
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Platform
Version: GIT MASTER
Hardware: Sun Solaris
: P3 normal
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2007-11-16 08:33 EST by Vincent Cojot
Modified: 2007-11-25 18:49:07 EST
1 user (show)

See Also:


Attachments
Proposed Patch (713 bytes, application/octet-stream)
2007-11-16 08:34 EST, Vincent Cojot

Description Vincent Cojot 2007-11-16 08:33:49 EST
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
Comment 1 Vincent Cojot 2007-11-16 08:34:24 EST
Created attachment 1583 [details]
Proposed Patch
Comment 2 Tim Angus 2007-11-25 18:49:07 EST
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.