mcst-linux-kernel/patches-2024.06.26/gtkglext-1.2.0/04_glibc2.27-ftbfs.patch

25 lines
521 B
Diff

Description: Fix FTBFS with glibc 2.27
index() is a function in <strings.h>
Author: Adrian Bunk <bunk@debian.org>
--- a/gdk/gdkglshapes.c
+++ b/gdk/gdkglshapes.c
@@ -544,7 +544,7 @@ static GLfloat idata[12][3] =
{-Z, -X, 0}
};
-static int index[20][3] =
+static int myindex[20][3] =
{
{0, 4, 1},
{0, 9, 4},
@@ -574,7 +574,7 @@ icosahedron(GLenum shadeType)
int i;
for (i = 19; i >= 0; i--) {
- drawtriangle(i, idata, index, shadeType);
+ drawtriangle(i, idata, myindex, shadeType);
}
}