diff options
author | youri <youri@pkgsrc.org> | 2016-06-16 10:00:46 +0000 |
---|---|---|
committer | youri <youri@pkgsrc.org> | 2016-06-16 10:00:46 +0000 |
commit | aa35681f2e467cc355d95ae97e5d90615aef853b (patch) | |
tree | 6d9cbe4414122ce4e60034f0bb09de88cb4efd48 /sysutils | |
parent | ffbd2943f23091d8efaf1fa671f65698e57e89ef (diff) | |
download | pkgsrc-aa35681f2e467cc355d95ae97e5d90615aef853b.tar.gz |
mate-system-monitor: Fix build.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/mate-system-monitor/distinfo | 4 | ||||
-rw-r--r-- | sysutils/mate-system-monitor/patches/patch-src_lsof.cpp | 11 |
2 files changed, 9 insertions, 6 deletions
diff --git a/sysutils/mate-system-monitor/distinfo b/sysutils/mate-system-monitor/distinfo index 41bafd50936..f776a5d5cf3 100644 --- a/sysutils/mate-system-monitor/distinfo +++ b/sysutils/mate-system-monitor/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2016/06/08 13:03:18 joerg Exp $ +$NetBSD: distinfo,v 1.4 2016/06/16 10:00:46 youri Exp $ SHA1 (mate-system-monitor-1.14.0.tar.xz) = a9045ce34fe9c116b6afae08b04030ab9c2287ae RMD160 (mate-system-monitor-1.14.0.tar.xz) = 42351dd35cf4f1510423adf1ef91c9aa79ab1980 SHA512 (mate-system-monitor-1.14.0.tar.xz) = f19fa0241228be8ec8600db43e71495750039288292ba5714489a84acb3e5cc9f4c87d39a63d29a0fc6f907af6ecc319382cd4276ae2de1125bba059d5b24be5 Size (mate-system-monitor-1.14.0.tar.xz) = 2135464 bytes -SHA1 (patch-src_lsof.cpp) = 338c9e5246404877045232fd6f4e00158788390d +SHA1 (patch-src_lsof.cpp) = 43966231211f547af5d4bf9862331d8e563d3754 diff --git a/sysutils/mate-system-monitor/patches/patch-src_lsof.cpp b/sysutils/mate-system-monitor/patches/patch-src_lsof.cpp index 68aaec57a4a..5aa252c1229 100644 --- a/sysutils/mate-system-monitor/patches/patch-src_lsof.cpp +++ b/sysutils/mate-system-monitor/patches/patch-src_lsof.cpp @@ -1,15 +1,18 @@ -$NetBSD: patch-src_lsof.cpp,v 1.2 2016/06/08 13:03:18 joerg Exp $ +$NetBSD: patch-src_lsof.cpp,v 1.3 2016/06/16 10:00:46 youri Exp $ Casting temporaries to references is not valid. +Submitted upstream. ---- src/lsof.cpp.orig 2016-06-04 18:57:52.613319665 +0000 +--- src/lsof.cpp.orig 2016-04-05 16:12:54.000000000 +0000 +++ src/lsof.cpp -@@ -137,7 +137,7 @@ namespace +@@ -137,7 +137,9 @@ namespace void update_count(unsigned count) { - string s = static_cast<std::ostringstream&>(std::ostringstream() << count).str(); -+ string s = (std::ostringstream() << count).str(); ++ std::ostringstream ss; ++ ss << count; ++ string s = ss.str(); gtk_label_set_text(this->count, s.c_str()); } |