mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
40d2bddd01
* gnu/packages/games.scm (xmoto): New variable. * gnu/packages/patches/xmoto-remove-glext.patch: New file. * gnu/packages/patches/xmoto-reproducible.patch: New file. * gnu/packages/patches/xmoto-utf8.patch: New file. * gnu/local.mk (dist_patch_DATA): Reference new files.
23 lines
800 B
Diff
23 lines
800 B
Diff
Description: Allow building without upstream-supplied glext.h
|
|
Author: Stephen Kitt <steve@sk2.org>
|
|
Bug: http://todo.xmoto.tuxfamily.org/index.php?do=details&task_id=803
|
|
|
|
--- xmoto-0.5.9+dfsg.orig/src/include/xm_OpenGL.h
|
|
+++ xmoto-0.5.9+dfsg/src/include/xm_OpenGL.h
|
|
@@ -1,7 +1,6 @@
|
|
#ifdef ENABLE_OPENGL
|
|
/* Pull in OpenGL headers */
|
|
/* following scissored from SDL_opengl.h */
|
|
-#define __glext_h_ /* Don't let gl.h include glext.h */
|
|
#ifdef HAVE_APPLE_OPENGL_FRAMEWORK
|
|
#include <OpenGL/gl.h> /* Header File For The OpenGL Library */
|
|
#include <OpenGL/glu.h> /* Header File For The GLU Library */
|
|
@@ -12,8 +11,5 @@
|
|
#include <GL/gl.h> /* Header File For The OpenGL Library */
|
|
#include <GL/glu.h> /* Header File For The GLU Library */
|
|
#endif
|
|
-#undef __glext_h_
|
|
-
|
|
-#include "../glext.h"
|
|
|
|
#endif
|