From 87bd6e919b1a5e510542cf2946af3c4483258e97 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 8 May 2007 14:49:12 +0000 Subject: oprofile: Update cvs patches to match cvs git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1608 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- .../oprofile/oparchive-exit-code-on-error.patch | 11 -- .../oprofile/opreport-xml-output-fixes.patch | 199 --------------------- meta/packages/oprofile/oprofile_cvs.bb | 2 - 3 files changed, 212 deletions(-) delete mode 100644 meta/packages/oprofile/oprofile/oparchive-exit-code-on-error.patch delete mode 100644 meta/packages/oprofile/oprofile/opreport-xml-output-fixes.patch (limited to 'meta/packages/oprofile') diff --git a/meta/packages/oprofile/oprofile/oparchive-exit-code-on-error.patch b/meta/packages/oprofile/oprofile/oparchive-exit-code-on-error.patch deleted file mode 100644 index ab4d7f421..000000000 --- a/meta/packages/oprofile/oprofile/oparchive-exit-code-on-error.patch +++ /dev/null @@ -1,11 +0,0 @@ -Index: oprofile/pp/oparchive.cpp -=================================================================== ---- oprofile.orig/pp/oparchive.cpp 2007-02-27 18:15:52.000000000 +0000 -+++ oprofile/pp/oparchive.cpp 2007-02-27 18:16:08.000000000 +0000 -@@ -164,5 +164,5 @@ - - int main(int argc, char const * argv[]) - { -- run_pp_tool(argc, argv, oparchive); -+ return run_pp_tool(argc, argv, oparchive); - } diff --git a/meta/packages/oprofile/oprofile/opreport-xml-output-fixes.patch b/meta/packages/oprofile/oprofile/opreport-xml-output-fixes.patch deleted file mode 100644 index e53bceb91..000000000 --- a/meta/packages/oprofile/oprofile/opreport-xml-output-fixes.patch +++ /dev/null @@ -1,199 +0,0 @@ -Index: oprofile/libpp/xml_utils.cpp -=================================================================== ---- oprofile.orig/libpp/xml_utils.cpp 2007-02-13 17:34:31.000000000 +0000 -+++ oprofile/libpp/xml_utils.cpp 2007-02-13 17:35:06.000000000 +0000 -@@ -60,7 +60,7 @@ - } - - --void dump_it(string const & prefix, sym_iterator it, bool want_nl = true) -+void dump_symbol(string const & prefix, sym_iterator it, bool want_nl = true) - { - if (it == symbols_end) - cverb << vxml << prefix << "END"; -@@ -71,6 +71,17 @@ - } - - -+void dump_symbols(string const & prefix, sym_iterator b, sym_iterator e) -+{ -+ if (b == (sym_iterator)0) -+ return; -+ -+ for (sym_iterator it = b; it != e; ++it) -+ dump_symbol(prefix, it, true); -+} -+ -+ -+ - void dump_classes() - { - cverb << vxml << "" << endl; diff --git a/meta/packages/oprofile/oprofile_cvs.bb b/meta/packages/oprofile/oprofile_cvs.bb index 4c4570981..b0ccc3ce6 100644 --- a/meta/packages/oprofile/oprofile_cvs.bb +++ b/meta/packages/oprofile/oprofile_cvs.bb @@ -10,9 +10,7 @@ SRC_URI = "cvs://anonymous@oprofile.cvs.sourceforge.net/cvsroot/oprofile;module= file://oprofile_eabi.patch;patch=1 \ file://oparchive-debug-dir.patch;patch=1 \ file://oparchive-list-files.patch;patch=1 \ - file://opreport-xml-output-fixes.patch;patch=1 \ file://xml_callgraph.patch;patch=1 \ - file://oparchive-exit-code-on-error.patch;patch=1 \ file://acinclude.m4" S = "${WORKDIR}/oprofile" -- cgit v1.2.3