diff options
| author | Michael Mair-Keimberger <mmk@levelnine.at> | 2025-02-09 09:55:22 +0100 |
|---|---|---|
| committer | Conrad Kostecki <conikost@gentoo.org> | 2025-02-23 23:16:48 +0100 |
| commit | 90cc7e15e7e826b5d32b69cb5f9269a216ce11f3 (patch) | |
| tree | f461dd75461762641d069f66380131ce9d5d9a64 /dev-scheme/racket/files | |
| parent | 0b8f08faa4382d96db6edc94518640233fa897ea (diff) | |
| download | gentoo-90cc7e15e7e826b5d32b69cb5f9269a216ce11f3.tar.gz gentoo-90cc7e15e7e826b5d32b69cb5f9269a216ce11f3.tar.bz2 gentoo-90cc7e15e7e826b5d32b69cb5f9269a216ce11f3.zip | |
dev-scheme/racket: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-scheme/racket/files')
| -rw-r--r-- | dev-scheme/racket/files/racket-8.14-compiler-elf.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-scheme/racket/files/racket-8.14-compiler-elf.patch b/dev-scheme/racket/files/racket-8.14-compiler-elf.patch deleted file mode 100644 index 3ba22ffca38e..000000000000 --- a/dev-scheme/racket/files/racket-8.14-compiler-elf.patch +++ /dev/null @@ -1,29 +0,0 @@ -This was modified to make it apply for distribution tarball. - -From bf288da1171e884537760d2f5723ceb03840de98 Mon Sep 17 00:00:00 2001 -From: Matthew Flatt <mflatt@racket-lang.org> -Date: Mon, 26 Aug 2024 07:42:26 -0600 -Subject: [PATCH] raco exe: repair ELF update to add a section - -When a NOBITS section is misinterpreted as taking up space in the -file, and when that space would overlap with the string-constant -update, then an incorrect update to the virtual-memory size of the -section was planned. That adjustment, in turn, could trigger -disallowed virtual-address shifts to PROGBITS sections that are later -in memory, leading to a "cannot move SHT_PROGBITS section" error. ---- - racket/collects/compiler/private/elf.rkt | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/racket/collects/compiler/private/elf.rkt b/racket/collects/compiler/private/elf.rkt -index c3009727cfd..a0fbef331db 100644 ---- a/collects/compiler/private/elf.rkt -+++ b/collects/compiler/private/elf.rkt -@@ -256,6 +256,7 @@ - (define (find-section-by-offset offset sections) - (for/or ([s (in-list sections)]) - (and (section-alloc? s) -+ (not (= SHT_NOBITS (section-type s))) - (offset . >= . (section-offset s)) - (offset . < . (+ (section-offset s) - (section-size s))) |
