summaryrefslogtreecommitdiffstats
path: root/sysutils/gnome-system-monitor
diff options
context:
space:
mode:
authormezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2007-09-19 00:18:54 +0800
committermezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2007-09-19 00:18:54 +0800
commit38ca57ee7378eedbf7a485c6dad442b537000429 (patch)
treec9b34f7bd52a4f79f9d33b62df62fd89aa9c7d5b /sysutils/gnome-system-monitor
parent7a74442350369870db93b163a665151cd030b928 (diff)
downloadmarcuscom-ports-38ca57ee7378eedbf7a485c6dad442b537000429.tar
marcuscom-ports-38ca57ee7378eedbf7a485c6dad442b537000429.tar.gz
marcuscom-ports-38ca57ee7378eedbf7a485c6dad442b537000429.tar.bz2
marcuscom-ports-38ca57ee7378eedbf7a485c6dad442b537000429.tar.lz
marcuscom-ports-38ca57ee7378eedbf7a485c6dad442b537000429.tar.xz
marcuscom-ports-38ca57ee7378eedbf7a485c6dad442b537000429.tar.zst
marcuscom-ports-38ca57ee7378eedbf7a485c6dad442b537000429.zip
No longer need this.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9662 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'sysutils/gnome-system-monitor')
-rw-r--r--sysutils/gnome-system-monitor/files/patch-fix_with_gcc3425
1 files changed, 0 insertions, 25 deletions
diff --git a/sysutils/gnome-system-monitor/files/patch-fix_with_gcc34 b/sysutils/gnome-system-monitor/files/patch-fix_with_gcc34
deleted file mode 100644
index 17e0c12ee..000000000
--- a/sysutils/gnome-system-monitor/files/patch-fix_with_gcc34
+++ /dev/null
@@ -1,25 +0,0 @@
-Index: src/defaulttable.h
-===================================================================
---- src/defaulttable.h (révision 2062)
-+++ src/defaulttable.h (copie de travail)
-@@ -2,18 +2,17 @@
- #define _PROCMAN_DEFAULTTABLE_H_
-
- #include <string>
--#include <tr1/memory>
- #include "regex.h"
-
- /* This file contains prettynames and icons for well-known applications, that by default has no .desktop entry */
-
- struct PrettyTableItem
- {
-- std::tr1::shared_ptr<pcrecpp::RE> command;
-+ pcrecpp::RE* command;
- std::string icon;
- };
-
--#define ITEM(CMD, ICON) { std::tr1::shared_ptr<pcrecpp::RE>(new pcrecpp::RE((CMD))), (ICON) }
-+#define ITEM(CMD, ICON) { new pcrecpp::RE((CMD)), (ICON) }
-
- /* The current table is only a test */
- static const PrettyTableItem default_table[] = {