guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: allegro: Fix compilation with Mesa >= 18.2.5.


From: guix-commits
Subject: 01/02: gnu: allegro: Fix compilation with Mesa >= 18.2.5.
Date: Wed, 12 Dec 2018 05:14:11 -0500 (EST)

rhelling pushed a commit to branch master
in repository guix.

commit ab533c613ee2a44595786a6aca0b958f9f7f1dd9
Author: Rutger Helling <address@hidden>
Date:   Wed Dec 12 11:04:54 2018 +0100

    gnu: allegro: Fix compilation with Mesa >= 18.2.5.
    
    * gnu/packages/game-development.scm (allegro)[source]: Add
    allegro-fix-compilation-mesa-18.2.5-and-later.patch.
    * gnu/packages/patches/allegro-fix-compilation-mesa-18.2.5-and-later.patch:
    New file.
---
 gnu/packages/game-development.scm                  |  2 ++
 ...gro-fix-compilation-mesa-18.2.5-and-later.patch | 41 ++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 34a015b..8a29297 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -652,6 +652,8 @@ etc.")
               (uri (string-append 
"https://github.com/liballeg/allegro5/releases";
                                   "/download/" version "/allegro-"
                                   version ".tar.gz"))
+              (patches (search-patches
+                        "allegro-fix-compilation-mesa-18.2.5-and-later.patch"))
               (sha256
                (base32
                 "1w9a5yqi5q03b2qvmx5ff90paz0xbr9cy7i7f0xiqa65ava66q9l"))))
diff --git 
a/gnu/packages/patches/allegro-fix-compilation-mesa-18.2.5-and-later.patch 
b/gnu/packages/patches/allegro-fix-compilation-mesa-18.2.5-and-later.patch
new file mode 100644
index 0000000..fa273a5
--- /dev/null
+++ b/gnu/packages/patches/allegro-fix-compilation-mesa-18.2.5-and-later.patch
@@ -0,0 +1,41 @@
+Fixes compilation with Mesa >= 18.2.5.
+
+Taken from upstream:
+
+https://github.com/liballeg/allegro5/commit/a40d30e21802ecf5c9382cf34af9b01bd3781e47
+
+diff --git a/include/allegro5/allegro_opengl.h 
b/include/allegro5/allegro_opengl.h
+index 0f86a6768..652dd024e 100644
+--- a/include/allegro5/allegro_opengl.h
++++ b/include/allegro5/allegro_opengl.h
+@@ -103,10 +103,14 @@
+
+ /* HACK: Prevent both Mesa and SGI's broken headers from screwing us */
+ #define __glext_h_
++#define __gl_glext_h_
+ #define __glxext_h_
++#define __glx_glxext_h_
+ #include <GL/gl.h>
+ #undef  __glext_h_
++#undef  __gl_glext_h_
+ #undef  __glxext_h_
++#undef  __glx_glxext_h_
+
+ #endif /* ALLEGRO_MACOSX */
+
+diff --git a/include/allegro5/opengl/GLext/glx_ext_defs.h 
b/include/allegro5/opengl/GLext/glx_ext_defs.h
+index 49c502091..fba8aea5d 100644
+--- a/include/allegro5/opengl/GLext/glx_ext_defs.h
++++ b/include/allegro5/opengl/GLext/glx_ext_defs.h
+@@ -1,7 +1,9 @@
+ /* HACK: Prevent both Mesa and SGI's broken headers from screwing us */
+ #define __glxext_h_
++#define __glx_glxext_h_
+ #include <GL/glx.h>
+ #undef __glxext_h_
++#undef __glx_glxext_h_
+
+ #ifndef GLX_VERSION_1_3
+ #define _ALLEGRO_GLX_VERSION_1_3
+--
+2.20.0



reply via email to

[Prev in Thread] Current Thread [Next in Thread]