From 21507b3600c616bca7049004eb518cf11f45f299 Mon Sep 17 00:00:00 2001 From: "Anthony J. Bentley" Date: Sun, 7 Jun 2015 02:41:28 -0600 Subject: [PATCH] Correct the path to the GLEW header. --- src/glshader.cpp | 2 +- src/rgl.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/glshader.cpp b/src/glshader.cpp index 4729945..a8947ea 100644 --- a/src/glshader.cpp +++ b/src/glshader.cpp @@ -23,7 +23,7 @@ #include #include #include "rgl_assert.h" -#include +#include #if defined(__MACOSX__) #include #include diff --git a/src/rgl.h b/src/rgl.h index c15f93f..1748406 100644 --- a/src/rgl.h +++ b/src/rgl.h @@ -26,7 +26,7 @@ #include "rgl_assert.h" #include "rdp.h" -#include +#include #if defined(__MACOSX__) #include #elif defined(__MACOS__) td class='sub right'>
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-06-18database: 'register-items' takes an open database....* guix/store/database.scm (store-database-directory) (store-database-file): New procedures. (call-with-database): Add call to 'mkdir-p'. (register-items): Add 'db' parameter and remove #:state-directory and #:schema. (register-path): Use 'store-database-file' and 'with-database', and parameterize SQL-SCHEMA. * gnu/build/image.scm (register-closure): Likewise. * gnu/build/vm.scm (register-closure): Likewise. * guix/scripts/pack.scm (store-database)[build]: Likewise. Ludovic Courtès
2020-06-09build: image: Do not call make-essential-device-nodes by default....Calling "mknod" without root permissions fails. Plus those device nodes do not appear to be needed to boot. * gnu/build/image.scm (initialize-root-partition): Do not use make-essential-device-nodes as default make-device-nodes procedure. Mathieu Othacehe
2020-06-08image: Add Hurd support....* gnu/system/image.scm (hurd-disk-image): New exported variable, (root-offset, root-label): new variables, (esp-partition, root-partition): adapt accordingly, (find-image): add Hurd support. Mathieu Othacehe
2020-05-29build: image: Fix initialize-efi-partition docstring....* gnu/build/image.scm (initialize-efi-partition): Turn BOOTLOADER-PACKAGE into GRUB-EFI. Mathieu Othacehe
2020-05-29image: Use grub-efi to install the EFI bootloader....* gnu/build/image.scm (initialize-efi-partition): Rename bootloader-package argument to grub-efi. * gnu/system/image.scm (system-disk-image): Adapt accordingly to pass grub-efi package. Mathieu Othacehe
2020-05-29image: Add bootloader installation support....* gnu/build/image.scm (initialize-root-partition): Add bootloader-package and bootloader-installer arguments. Run the bootloader-installer if defined. * gnu/system/image.scm (system-disk-image): Adapt the partition initializer call accordingly. Mathieu Othacehe
2020-05-26image: Add partition file-system options support....* gnu/image.scm (<partition>)[file-system-options]: New field, (partition-file-system-options): new exported procedure. * gnu/system/image.scm (partition->gexp): Adapt accordingly. * gnu/build/image.scm (sexp->partition): Also adapt accordingly, (make-ext-image): and pass file-system options to mke2fs. Mathieu Othacehe
2020-05-26build: image: Add support for EXT2 and EXT3 file-systems....* gnu/build/image.scm (make-ext4-image): Rename to ... (make-ext-image): ... it, and pass the file-system type to mke2fs, (make-partition-image): Adapt to call "make-ext-image" if the partition file-system is prefixed by "ext". Mathieu Othacehe