summaryrefslogtreecommitdiff
path: root/gnu/packages/base.scm
diff options
context:
space:
mode:
authorYelninei <yelninei@tutamail.com>2025-10-17 18:57:58 +0100
committerLudovic Courtès <ludo@gnu.org>2025-11-03 17:18:38 +0100
commit7d488fec76c8fc36b2d6d058e172fc37f72f9787 (patch)
treecbbae5559300de176feb84bbd358387c90d251b8 /gnu/packages/base.scm
parente639447fc156b65a84a92d476b4d78d24cdd7788 (diff)
gnu: glibc/hurd: Add patches from glibc 2.42.
* gnu/packages/base.scm (glibc/hurd): Remove intr-msg-clobber.patch, add signal-fpe-exception.patch and xstate.patch. gnu/packages/patches/glibc-hurd-signal-fpe-exception.patch, gnu/packages/patches/glibc-hurd-xstate.patch : New patches * gnu/local.mk (dist_patch_DATA): Register them. Change-Id: Ib5b38f1fb8b43d76ec236232be8ff7552dad7422 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r--gnu/packages/base.scm13
1 files changed, 12 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 26096743192..79810bccd10 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -1548,7 +1548,18 @@ variety of options. It is an alternative to the shell \"type\" built-in
1548command.") 1548command.")
1549 (license gpl3+))) ; some files are under GPLv2+ 1549 (license gpl3+))) ; some files are under GPLv2+
1550 1550
1551(define-public glibc/hurd glibc) 1551(define-public glibc/hurd
1552 (hidden-package
1553 (package/inherit glibc
1554 (source
1555 (origin
1556 (inherit (package-source glibc))
1557 (patches
1558 (append (map search-patch
1559 (delete "glibc-hurd64-intr-msg-clobber.patch" %glibc-patches))
1560 (search-patches
1561 "glibc-hurd-signal-fpe-exception.patch"
1562 "glibc-hurd-xstate.patch"))))))))
1552 1563
1553(define-public glibc/hurd-headers 1564(define-public glibc/hurd-headers
1554 (package/inherit glibc/hurd 1565 (package/inherit glibc/hurd