diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2021-01-04 20:41:32 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-01-16 00:27:09 +0100 |
commit | 8b6d454cf5606540ab23ce7479631f4f09af6d34 (patch) | |
tree | 5a4bd3a75008462d031c764bef13e868deb52566 /nx-X11/extras | |
parent | 8c3bb27150bf058c007af1318cb477e9763b9d9d (diff) | |
download | nx-libs-8b6d454cf5606540ab23ce7479631f4f09af6d34.tar.gz nx-libs-8b6d454cf5606540ab23ce7479631f4f09af6d34.tar.bz2 nx-libs-8b6d454cf5606540ab23ce7479631f4f09af6d34.zip |
Mesa: make compilation with work with musl
Fixes ArcticaProject/nx-lib#975
Diffstat (limited to 'nx-X11/extras')
-rw-r--r-- | nx-X11/extras/Mesa.patches_6.4.2/1001_support_musl | 12 | ||||
-rw-r--r-- | nx-X11/extras/Mesa.patches_6.4.2/series | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/nx-X11/extras/Mesa.patches_6.4.2/1001_support_musl b/nx-X11/extras/Mesa.patches_6.4.2/1001_support_musl new file mode 100644 index 000000000..72b8d90bd --- /dev/null +++ b/nx-X11/extras/Mesa.patches_6.4.2/1001_support_musl @@ -0,0 +1,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 diff --git a/nx-X11/extras/Mesa.patches_6.4.2/series b/nx-X11/extras/Mesa.patches_6.4.2/series index 4e6c15934..db40c2b60 100644 --- a/nx-X11/extras/Mesa.patches_6.4.2/series +++ b/nx-X11/extras/Mesa.patches_6.4.2/series @@ -5,3 +5,4 @@ 5001_nasty-typo-fixes.patch 4005_adapt-all-libX11-include-paths-to-libNX_X11.patch 5002_silence-uninitialized.diff +1001_support_musl |