summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2014-08-13 22:34:37 +0000
committerjoerg <joerg@pkgsrc.org>2014-08-13 22:34:37 +0000
commit8c097b6c1539997507f6f5b4bdb6c6c3b3e96041 (patch)
tree60e3c5dfe6a91c6f509cde54f2b5a021db2a626c /sysutils
parente8399da8ee219eb6081312e22ba08c6e055471c1 (diff)
downloadpkgsrc-8c097b6c1539997507f6f5b4bdb6c6c3b3e96041.tar.gz
Fix constness of operator ==.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/strigi/distinfo3
-rw-r--r--sysutils/strigi/patches/patch-strigidaemon_bin_daemon_xesam_xesamsearch.h13
2 files changed, 15 insertions, 1 deletions
diff --git a/sysutils/strigi/distinfo b/sysutils/strigi/distinfo
index dc3dd314d1f..719653b15ef 100644
--- a/sysutils/strigi/distinfo
+++ b/sysutils/strigi/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.8 2013/02/09 22:32:45 markd Exp $
+$NetBSD: distinfo,v 1.9 2014/08/13 22:34:37 joerg Exp $
SHA1 (strigi-0.7.8.tar.bz2) = 7250fb15109d33b0c49995a2cc3513ba7d937882
RMD160 (strigi-0.7.8.tar.bz2) = 34cbbe98e7a371467b115b18586baf299340d1b8
Size (strigi-0.7.8.tar.bz2) = 810574 bytes
SHA1 (patch-libstreams_CMakeLists.txt) = ce25d12f5c20f7f0be659bdccc24e8b4a898274a
+SHA1 (patch-strigidaemon_bin_daemon_xesam_xesamsearch.h) = 70d251880f08f279f53a3ed31281452c6d25811d
diff --git a/sysutils/strigi/patches/patch-strigidaemon_bin_daemon_xesam_xesamsearch.h b/sysutils/strigi/patches/patch-strigidaemon_bin_daemon_xesam_xesamsearch.h
new file mode 100644
index 00000000000..6d3ca9a9010
--- /dev/null
+++ b/sysutils/strigi/patches/patch-strigidaemon_bin_daemon_xesam_xesamsearch.h
@@ -0,0 +1,13 @@
+$NetBSD: patch-strigidaemon_bin_daemon_xesam_xesamsearch.h,v 1.1 2014/08/13 22:34:37 joerg Exp $
+
+--- strigidaemon/bin/daemon/xesam/xesamsearch.h.orig 2014-08-13 13:44:43.000000000 +0000
++++ strigidaemon/bin/daemon/xesam/xesamsearch.h
+@@ -43,7 +43,7 @@ public:
+ XesamSearch(Private* p);
+ ~XesamSearch();
+ void operator=(const XesamSearch& xs);
+- bool operator==(const XesamSearch& xs) { return p == xs.p; }
++ bool operator==(const XesamSearch& xs) const { return p == xs.p; }
+ void startSearch();
+ void getHitCount(void* msg);
+ void getHits(void* msg, uint32_t num);