Codebase list sludge / 9c71a55
Add patch to remove includes of GL/glext.h. Tobias Hansen 5 years ago
3 changed file(s) with 125 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
0 sludge (2.2.2-1.1) UNRELEASED; urgency=medium
0 sludge (2.2.2-2) unstable; urgency=medium
11
2 * Non-maintainer upload.
3 * Fix FTCBFS: Let dh_auto_configure pass --host to ./configure. (Closes: #910321)
2 [ Helmut Grohne ]
3 * Fix FTCBFS: Let dh_auto_configure pass --host to ./configure.
4 (Closes: #910321)
45
5 -- Helmut Grohne <helmut@subdivi.de> Thu, 04 Oct 2018 20:36:26 +0200
6 [ Tobias Hansen ]
7 * Add patch dont-include-glext.h.patch. (Closes: #915481)
8
9 -- Tobias Hansen <thansen@debian.org> Mon, 17 Dec 2018 17:05:57 +0100
610
711 sludge (2.2.2-1) unstable; urgency=medium
812
0 Description: Remove includes of GL/glext.h
1 This header contains declarations which conflict with ones
2 in glew.h 2.1 and seems not to be needed.
3 Author: Tobias Hansen <thansen@debian.org>
4 Bug-Debian: https://bugs.debian.org/915481
5
6 --- a/GTK_Dev_Kit/FloorMakerMain.cpp
7 +++ b/GTK_Dev_Kit/FloorMakerMain.cpp
8 @@ -29,7 +29,6 @@
9 #define GL_GLEXT_PROTOTYPES
10 #include <GL/gl.h>
11 #include <GL/glu.h>
12 -#include <GL/glext.h>
13
14 #include <errno.h>
15 #include <sys/types.h>
16 --- a/GTK_Dev_Kit/ProjectManagerMain.cpp
17 +++ b/GTK_Dev_Kit/ProjectManagerMain.cpp
18 @@ -27,7 +27,6 @@
19 #define GL_GLEXT_PROTOTYPES
20 #include <GL/gl.h>
21 #include <GL/glu.h>
22 -#include <GL/glext.h>
23
24 #include <errno.h>
25 #include <sys/types.h>
26 --- a/GTK_Dev_Kit/SludgeFloorMaker.cpp
27 +++ b/GTK_Dev_Kit/SludgeFloorMaker.cpp
28 @@ -29,7 +29,6 @@
29 #define GL_GLEXT_PROTOTYPES
30 #include <GL/gl.h>
31 #include <GL/glu.h>
32 -#include <GL/glext.h>
33
34 #include <errno.h>
35 #include <sys/types.h>
36 --- a/GTK_Dev_Kit/SludgeGLApplication.cpp
37 +++ b/GTK_Dev_Kit/SludgeGLApplication.cpp
38 @@ -29,7 +29,6 @@
39 #define GL_GLEXT_PROTOTYPES
40 #include <GL/gl.h>
41 #include <GL/glu.h>
42 -#include <GL/glext.h>
43
44 #include <errno.h>
45 #include <sys/types.h>
46 --- a/GTK_Dev_Kit/SludgeProjectManager.cpp
47 +++ b/GTK_Dev_Kit/SludgeProjectManager.cpp
48 @@ -29,7 +29,6 @@
49 #define GL_GLEXT_PROTOTYPES
50 #include <GL/gl.h>
51 #include <GL/glu.h>
52 -#include <GL/glext.h>
53
54 #include <errno.h>
55 #include <sys/types.h>
56 --- a/GTK_Dev_Kit/SludgeSpriteBankEditor.cpp
57 +++ b/GTK_Dev_Kit/SludgeSpriteBankEditor.cpp
58 @@ -29,7 +29,6 @@
59 #define GL_GLEXT_PROTOTYPES
60 #include <GL/gl.h>
61 #include <GL/glu.h>
62 -#include <GL/glext.h>
63
64 #include <errno.h>
65 #include <sys/types.h>
66 --- a/GTK_Dev_Kit/SludgeTranslationEditor.cpp
67 +++ b/GTK_Dev_Kit/SludgeTranslationEditor.cpp
68 @@ -29,7 +29,6 @@
69 #define GL_GLEXT_PROTOTYPES
70 #include <GL/gl.h>
71 #include <GL/glu.h>
72 -#include <GL/glext.h>
73
74 #include <errno.h>
75 #include <sys/types.h>
76 --- a/GTK_Dev_Kit/SludgeZBufferMaker.cpp
77 +++ b/GTK_Dev_Kit/SludgeZBufferMaker.cpp
78 @@ -29,7 +29,6 @@
79 #define GL_GLEXT_PROTOTYPES
80 #include <GL/gl.h>
81 #include <GL/glu.h>
82 -#include <GL/glext.h>
83
84 #include <errno.h>
85 #include <sys/types.h>
86 --- a/GTK_Dev_Kit/SpriteBankEditorMain.cpp
87 +++ b/GTK_Dev_Kit/SpriteBankEditorMain.cpp
88 @@ -29,7 +29,6 @@
89 #define GL_GLEXT_PROTOTYPES
90 #include <GL/gl.h>
91 #include <GL/glu.h>
92 -#include <GL/glext.h>
93
94 #include <errno.h>
95 #include <sys/types.h>
96 --- a/GTK_Dev_Kit/TranslationEditorMain.cpp
97 +++ b/GTK_Dev_Kit/TranslationEditorMain.cpp
98 @@ -27,7 +27,6 @@
99 #define GL_GLEXT_PROTOTYPES
100 #include <GL/gl.h>
101 #include <GL/glu.h>
102 -#include <GL/glext.h>
103
104 #include <errno.h>
105 #include <sys/types.h>
106 --- a/GTK_Dev_Kit/ZBufferMakerMain.cpp
107 +++ b/GTK_Dev_Kit/ZBufferMakerMain.cpp
108 @@ -29,7 +29,6 @@
109 #define GL_GLEXT_PROTOTYPES
110 #include <GL/gl.h>
111 #include <GL/glu.h>
112 -#include <GL/glext.h>
113
114 #include <errno.h>
115 #include <sys/types.h>
0 dont-include-glext.h.patch