diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2021-11-25 07:37:12 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2021-11-25 07:37:12 +0100 |
commit | 221e1b192f1cebcdfd8789a5e8a57fa5a52e2246 (patch) | |
tree | 5c176d54005a102350bdef5c3cb403611df422a7 /dev-ada/gnatmem/files | |
parent | base/make.defaults: change default for gnat to 2020 (diff) | |
download | gentoo-221e1b192f1cebcdfd8789a5e8a57fa5a52e2246.tar.gz gentoo-221e1b192f1cebcdfd8789a5e8a57fa5a52e2246.tar.bz2 gentoo-221e1b192f1cebcdfd8789a5e8a57fa5a52e2246.zip |
dev-ada/gnatmem: rm gnat_2019 and old ebuilds
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ada/gnatmem/files')
-rw-r--r-- | dev-ada/gnatmem/files/gnatmem-2019-bfd.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-ada/gnatmem/files/gnatmem-2019-bfd.patch b/dev-ada/gnatmem/files/gnatmem-2019-bfd.patch deleted file mode 100644 index 007d217cf247..000000000000 --- a/dev-ada/gnatmem/files/gnatmem-2019-bfd.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- a/src/libaddr2line.c 2020-08-04 22:41:04.670046491 +0200 -+++ b/src/libaddr2line.c 2020-08-04 22:44:55.560802332 +0200 -@@ -55,14 +55,26 @@ - if (found) - return; - -+#if defined(bfd_get_section_flags) - if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0) -+#else -+ if ((bfd_section_flags (section) & SEC_ALLOC) == 0) -+#endif - return; - -+#if defined(bfd_get_section_vma) - vma = bfd_get_section_vma (abfd, section); -+#else -+ vma = bfd_section_vma (section); -+#endif - if (pc < vma) - return; - -+#if defined(bfd_get_section_size) - size = bfd_get_section_size (section); -+#else -+ size = bfd_section_size (section); -+#endif - if (pc >= vma + size) - return; - |