Fix build on 32-bit architectures with Mesa 18.3. Patch taken from upstream: https://git.enlightenment.org/core/efl.git/commit/?id=0d2b624f1e24240a1c4e651aa1cfe9a8dd10a573 diff --git a/src/lib/evas/Evas_GL.h b/src/lib/evas/Evas_GL.h index b6b642400f..4f67b1695f 100644 --- a/src/lib/evas/Evas_GL.h +++ b/src/lib/evas/Evas_GL.h @@ -4272,9 +4272,11 @@ typedef signed int GLfixed; // Changed khronos_int32_t #ifndef GL_ES_VERSION_2_0 /* GL types for handling large vertex buffer objects */ -#include +# ifndef GL_VERSION_1_5 +# include typedef ptrdiff_t GLintptr; // Changed khronos_intptr_t typedef ptrdiff_t GLsizeiptr; // Changed khronos_ssize_t +# endif #endif /* Some definitions from GLES 3.0. e='koszko' selected='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-06-02services: nix: Fix activation....This commit follows 797be0ea5c3703ad96acd32c98dca5f946cf5c95. Reported by kiasoc5 <kiasoc5@disroot.org> at <https://lists.gnu.org/archive/html/help-guix/2024-05/msg00185.html>. * gnu/services/nix.scm (nix-activation): Avoid provisioning the store if it already exists. Change-Id: I159e8af5d7bd6ce62857b356d6e9ac68fe16acf4 Oleg Pykhalov
2024-05-29services: nix: Mount Nix store read only....* gnu/services/nix.scm (nix-shepherd-service): Add requirements. (%nix-store-directory): New variable. (nix-service-type): Add file-system-service-type extension. Change-Id: I18a5d58c92c1f2b5b6dcecc3d5b439cc15bf4e49 Oleg Pykhalov
2022-12-15services: nix: Fix nix-shepherd-service....* gnu/services/nix.scm (nix-shepherd-service): Un-gexp build-directory. Christopher Baines
2022-12-13services: nix: Add more configuration fields....* gnu/services/nix.scm (<nix-configuration>)[build-directory]: New field. (nix-service-etc, nix-shepherd-service): Take them into account. * doc/guix.texi (Nix): Update it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Petr Hodina