Fix building of GPM with glibc 2.26: https://bugs.gentoo.org/629774 Patches copied from Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-libs/gpm/files/gpm-1.20.7-glibc-2.26.patch?id=1618968c56caf7f8c08823908d88dc49bb8f7649 https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-libs/gpm/files/gpm-1.20.7-sysmacros.patch?id=1618968c56caf7f8c08823908d88dc49bb8f7649 --- a/src/prog/gpm-root.y 2012-10-26 17:21:38.000000000 -0400 +++ b/src/prog/gpm-root.y 2017-09-07 20:39:51.933264063 -0400 @@ -1197,7 +1197,7 @@ /* reap your zombies */ childaction.sa_handler=reap_children; #if defined(__GLIBC__) - __sigemptyset(&childaction.sa_mask); + sigemptyset(&childaction.sa_mask); #else /* __GLIBC__ */ childaction.sa_mask=0; #endif /* __GLIBC__ */ From b350aee4ea5785a75cb6ad770f6b768c506ebb70 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 14 Mar 2016 15:39:54 -0400 Subject: [PATCH] fix building w/newer glibc Linux C libraries are looking to disentangle sysmacros.h from the sys/types.h include, so make sure we pull in the header when it is found. --- src/daemon/open_console.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/daemon/open_console.c b/src/daemon/open_console.c index 4d6c0af..6dd43e6 100644 --- a/src/daemon/open_console.c +++ b/src/daemon/open_console.c @@ -24,6 +24,10 @@ #include /* major() */ #include /* ioctl */ +#ifdef HAVE_SYS_SYSMACROS_H +#include /* major() w/newer glibc */ +#endif + /* Linux specific (to be outsourced in gpm2 */ #include /* for serial console check */ #include /* for serial console check */ -- 2.6.2 og msg
AgeCommit message (Expand)Author
2017-07-02gnu: Switch guile-cairo and dependents to Guile 2.2 again....Fixes <https://bugs.gnu.org/27551>. Reported by Leo Famulari <leo@famulari.name>. This reinstates the following commits: e3ddb1e83 * gnu: guile-cairo: Switch to Guile 2.2. ae5c6ef39 * gnu: guile-gnome: Update to 2.16.5. 0fd8013fc * gnu: guile-rsvg: Update to commit 05c6a2fd. 66b9183c4 * gnu: guile-lib: Switch to Guile 2.2. and adds the following changes: * gnu/bootloader/grub.scm (svg->png): Add 'package->derivation' call for GUILE-2.2. Pass #:guile-for-build to 'gexp->derivation'. * gnu/build/svg.scm (svg->png): Add 'em' and 'ex' to the 'let-values' form to account for all the values returned by 'rsvg-handle-get-dimensions', which Guile 2.2 does not truncate. Ludovic Courtès
2017-07-01Revert "gnu: guile-cairo: Switch to Guile 2.2."...This commit caused the build of grub-image.png to fail, prevent the build of grub.cfg and reconfiguring of GuixSD: <https://bugs.gnu.org/27551> This reverts commit e3ddb1e83296c10338d35bc687772242b2f5eac6. Leo Famulari
2017-06-30gnu: guile-cairo: Switch to Guile 2.2....This patch adjusts dependent packages accordingly. * gnu/packages/gtk.scm (guile-cairo)[inputs]: Switch to GUILE-2.2 and GUILE-LIB. (guile-rsvg)[inputs]: Likewise. (guile-present)[inputs]: Likewise. (guile-gnome)[inputs]: Likewise. * gnu/packages/plotutils.scm (guile-charting)[inputs]: Switch go GUILE-2.2. Ludovic Courtès
2017-04-15gnu: asymptote: Update to 2.41...* gnu/packages/plotutils.scm (asymptote): Update to 2.41. Signed-off-by: Marius Bakke <mbakke@fastmail.com> Nicolas Goaziou
2017-03-07gnu: asymptote: Update to 2.40....* gnu/packages/plotutils.scm (asymptote): Update to 2.40. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Nicolas Goaziou
2017-01-29gnu: asymptote: Update to 2.39...* gnu/packages/plotutils.scm (asymptote): Update to 2.39. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Goaziou