diff options
author | 2021-06-13 17:08:44 +0000 | |
---|---|---|
committer | 2021-06-13 17:13:53 +0000 | |
commit | 59b7de1af8fc3b52a49b2f1601b2abd0bca30673 (patch) | |
tree | 34b161f3243f280247424b12ee8bdfba73696fe5 /mail-filter/spamprobe/files | |
parent | sci-visualization/paraview: fix build for GCC 11 (diff) | |
download | gentoo-59b7de1af8fc3b52a49b2f1601b2abd0bca30673.tar.gz gentoo-59b7de1af8fc3b52a49b2f1601b2abd0bca30673.tar.bz2 gentoo-59b7de1af8fc3b52a49b2f1601b2abd0bca30673.zip |
mail-filter/spamprobe: update EAPI 6 -> 7, fix gcc 11 build
Closes: https://bugs.gentoo.org/787311
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'mail-filter/spamprobe/files')
-rw-r--r-- | mail-filter/spamprobe/files/spamprobe-1.4d-gcc11-const-comp.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mail-filter/spamprobe/files/spamprobe-1.4d-gcc11-const-comp.patch b/mail-filter/spamprobe/files/spamprobe-1.4d-gcc11-const-comp.patch new file mode 100644 index 000000000000..1eec9cc6ee02 --- /dev/null +++ b/mail-filter/spamprobe/files/spamprobe-1.4d-gcc11-const-comp.patch @@ -0,0 +1,13 @@ +diff --git a/src/includes/LRUCache.h b/src/includes/LRUCache.h +index cf7df30..50467d5 100644 +--- a/src/includes/LRUCache.h ++++ b/src/includes/LRUCache.h +@@ -60,7 +60,7 @@ public: + { + public: + bool operator()(const NodeType *a, +- const NodeType *b) ++ const NodeType *b) const + { + return a->key < b->key; + } |