Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/mono-debugger/files: mono-debugger-2.8-system-bfd.patch
Date: Wed, 05 Jan 2011 20:32:09
Message-Id: 20110105203155.ACCE120057@flycatcher.gentoo.org
1 pacho 11/01/05 20:31:55
2
3 Modified: mono-debugger-2.8-system-bfd.patch
4 Log:
5 Revision bump including and using fixed patch to use system libbfd (bug #350738 by Rafał Mużyło). Remove old and drop 9999 since it's not really being tested neither maintained downstream.
6
7 (Portage version: 2.1.9.28/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-util/mono-debugger/files/mono-debugger-2.8-system-bfd.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mono-debugger/files/mono-debugger-2.8-system-bfd.patch?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mono-debugger/files/mono-debugger-2.8-system-bfd.patch?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mono-debugger/files/mono-debugger-2.8-system-bfd.patch?r1=1.1&r2=1.2
15
16 Index: mono-debugger-2.8-system-bfd.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/files/mono-debugger-2.8-system-bfd.patch,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- mono-debugger-2.8-system-bfd.patch 9 Oct 2010 20:05:25 -0000 1.1
23 +++ mono-debugger-2.8-system-bfd.patch 5 Jan 2011 20:31:55 -0000 1.2
24 @@ -2,7 +2,7 @@
25 index c643e64..402be56 100644
26 --- a/configure.in
27 +++ b/configure.in
28 -@@ -64,6 +64,18 @@ case "$host" in
29 +@@ -64,6 +64,19 @@ case "$host" in
30 esac
31 AC_MSG_RESULT(ok)
32
33 @@ -14,6 +14,7 @@
34 + AC_CHECK_HEADERS([bfd.h], [], [AC_MSG_ERROR([Missing bfd.h header])])
35 + AC_CHECK_LIB([bfd], [bfd_init], [:], [AC_MSG_ERROR([Missing libbfd library])])
36 + AC_CHECK_LIB([opcodes], [init_disassemble_info], [:], [AC_MSG_ERROR([Missing libopcodes library])])
37 ++ AC_CHECK_MEMBERS([asection.rawsize], [], [], [[#include <bfd.h>]])
38 + ])
39 +
40 +AM_CONDITIONAL([SYSTEM_LIBBFD], [test "x$with_system_libbfd" = "xyes"])
41 @@ -52,9 +53,9 @@
42 @SERVER_DEPENDENCIES_CFLAGS@ @server_cflags@
43
44 +else
45 -+libmonodebuggerbfdglue_la_LIBADD =
46 ++libmonodebuggerbfdglue_la_LIBADD = -lopcodes -lbfd
47 +
48 -+libmonodebuggerbfdglue_la_CPPFLAGS = -lopcodes -lbfd \
49 ++libmonodebuggerbfdglue_la_CPPFLAGS = \
50 + @SERVER_DEPENDENCIES_CFLAGS@ @server_cflags@
51 +
52 +endif