summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2013-04-30 22:18:21 +0000
committerjoerg <joerg@pkgsrc.org>2013-04-30 22:18:21 +0000
commit96fece1b674e8cef4b8682d39c2a92e89331ea2a (patch)
tree75da8f59adf3d61c11406f5794c0aa939ccd4882 /editors
parenta4376c5531a925857f5d7056ceb81323edcaf26e (diff)
downloadpkgsrc-96fece1b674e8cef4b8682d39c2a92e89331ea2a.tar.gz
Add some const poison for stricter STL implementations.
Diffstat (limited to 'editors')
-rw-r--r--editors/gobby/distinfo3
-rw-r--r--editors/gobby/patches/patch-inc_preferencesdialog.hpp13
2 files changed, 15 insertions, 1 deletions
diff --git a/editors/gobby/distinfo b/editors/gobby/distinfo
index 7bbdb3b4442..4d23e1a53cb 100644
--- a/editors/gobby/distinfo
+++ b/editors/gobby/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2013/02/26 10:26:27 joerg Exp $
+$NetBSD: distinfo,v 1.7 2013/04/30 22:18:21 joerg Exp $
SHA1 (gobby-0.4.12.tar.gz) = 55d23f6ca51c1f2929218f6877f2c580a3b2c34e
RMD160 (gobby-0.4.12.tar.gz) = fca36ca997e2f5fdd6062e135ea35f0adae6d965
@@ -6,4 +6,5 @@ Size (gobby-0.4.12.tar.gz) = 464464 bytes
SHA1 (patch-aa) = be469582c2e0d0b958adc7a8edb17b796f3ac15b
SHA1 (patch-configure) = b3b9fd5d5698cfb7db946304f86d7c524d6bc948
SHA1 (patch-inc_config.hpp) = c9b08460b0b11dab30069c092a7f1ce22c42a2a1
+SHA1 (patch-inc_preferencesdialog.hpp) = f38ae013fd8976a0ee5880d58a55c83825a43e87
SHA1 (patch-src_gselector_cpp) = 2b3065f34ab4557800e1dc5da9253da23fffa565
diff --git a/editors/gobby/patches/patch-inc_preferencesdialog.hpp b/editors/gobby/patches/patch-inc_preferencesdialog.hpp
new file mode 100644
index 00000000000..a5063c6b86e
--- /dev/null
+++ b/editors/gobby/patches/patch-inc_preferencesdialog.hpp
@@ -0,0 +1,13 @@
+$NetBSD: patch-inc_preferencesdialog.hpp,v 1.1 2013/04/30 22:18:21 joerg Exp $
+
+--- inc/preferencesdialog.hpp.orig 2013-04-30 21:24:56.000000000 +0000
++++ inc/preferencesdialog.hpp
+@@ -198,7 +198,7 @@ public:
+ protected:
+ struct LangCompare
+ {
+- bool operator()(GtkSourceLanguage* first, GtkSourceLanguage* second)
++ bool operator()(const GtkSourceLanguage* first, const GtkSourceLanguage* second) const
+ {
+ return first < second;
+ }