aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/Mesa.patches_6.4.2/1001_support_musl
blob: 72b8d90bdea146d25ce23c3ab43f5064ac50c0de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
make compilation work on any non-linux glibc system. See ArcticaProject/nx-libs#975
--- a/src/mesa/main/glheader.h
+++ b/src/mesa/main/glheader.h
@@ -62,7 +62,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-#if defined(__linux__) && defined(__i386__)
+#if defined(__GLIBC__) && defined(__i386__)
 #include <fpu_control.h>
 #endif
 #endif