summaryrefslogtreecommitdiff
path: root/dev-ada/gnatmem/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2021-12-05 02:47:11 +0000
committerV3n3RiX <venerix@koprulu.sector>2021-12-05 02:47:11 +0000
commit2771f79232c273bc2a57d23bf335dd81ccf6af28 (patch)
treec8af0fd04194aed03cf067d44e53c7edd3e9ab84 /dev-ada/gnatmem/files
parente9d044d4b9b71200a96adfa280848858c0f468c9 (diff)
gentoo resync : 05.12.2021
Diffstat (limited to 'dev-ada/gnatmem/files')
-rw-r--r--dev-ada/gnatmem/files/gnatmem-2019-bfd.patch29
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;
-