summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2005-02-08 11:19:32 +0000
committerDaniel Black <dragonheart@gentoo.org>2005-02-08 11:19:32 +0000
commit33173ce4af6b18f5bf3953004a56a12c236181f9 (patch)
treec26ddc37de2d2b2456c063d1325d186eb54f3aed /dev-util/alleyoop/files
parentVersion bumped. This closes bug #78738. (diff)
downloadgentoo-2-33173ce4af6b18f5bf3953004a56a12c236181f9.tar.gz
gentoo-2-33173ce4af6b18f5bf3953004a56a12c236181f9.tar.bz2
gentoo-2-33173ce4af6b18f5bf3953004a56a12c236181f9.zip
Replace removed defination in binutils as per bug #81210
(Portage version: 2.0.51-r15)
Diffstat (limited to 'dev-util/alleyoop/files')
-rw-r--r--dev-util/alleyoop/files/alleyoop-0.8.2.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/dev-util/alleyoop/files/alleyoop-0.8.2.patch b/dev-util/alleyoop/files/alleyoop-0.8.2.patch
new file mode 100644
index 000000000000..18e26be5783a
--- /dev/null
+++ b/dev-util/alleyoop/files/alleyoop-0.8.2.patch
@@ -0,0 +1,19 @@
+--- src/symtab.c.orig 2005-02-08 20:39:13.046982560 +0930
++++ src/symtab.c 2005-02-08 20:43:31.046751024 +0930
+@@ -34,6 +34,7 @@
+ #include "symtab.h"
+ #include "process.h"
+ #include "ldd.h"
++#include <bfd.h>
+
+ #define d(x)
+ #define w(x) x
+@@ -115,7 +116,7 @@
+
+ map->text_section = section;
+ map->text_start = load_addr + bfd_section_vma (map->abfd, section);
+- map->text_end = map->text_start + bfd_get_section_size_before_reloc (section);
++ map->text_end = map->text_start + bfd_section_size(map->abfd, section);
+
+ map->filename = g_strdup (filename);
+ map->libname = g_strdup (libname);