aboutsummaryrefslogtreecommitdiff
path: root/games/glob2
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2018-10-22 20:31:20 +0000
committerJan Beich <jbeich@FreeBSD.org>2018-10-22 20:31:20 +0000
commit2fd0a6aa5eca84790c79257641635f023ca46ca1 (patch)
tree4f4b9618311082a1097bc5b4afbe011364afd020 /games/glob2
parentb013832e3dcc77a326349f433f56f286def22394 (diff)
downloadports-2fd0a6aa5eca84790c79257641635f023ca46ca1.tar.gz
ports-2fd0a6aa5eca84790c79257641635f023ca46ca1.zip
Notes
Diffstat (limited to 'games/glob2')
-rw-r--r--games/glob2/files/patch-boost-1.6917
1 files changed, 17 insertions, 0 deletions
diff --git a/games/glob2/files/patch-boost-1.69 b/games/glob2/files/patch-boost-1.69
new file mode 100644
index 000000000000..2b12ddb3dbac
--- /dev/null
+++ b/games/glob2/files/patch-boost-1.69
@@ -0,0 +1,17 @@
+After https://github.com/boostorg/logic/commit/23cd89d4c80f build fails:
+
+src/AIEcho.cpp:4390:9: error: no viable conversion from returned value of type 'boost::logic::tribool' to function return type 'bool'
+ return is_end!=rhs.is_end || team!=rhs.team || building_type!=rhs.building_type || level!=rhs.level || construction_site!=rhs.construction_site;
+ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+--- src/AIEcho.cpp.orig 2009-08-29 20:39:05 UTC
++++ src/AIEcho.cpp
+@@ -4387,7 +4387,7 @@ bool enemy_building_iterator::operator!=(const enemy_b
+ {
+ if(is_end && rhs.is_end)
+ return false;
+- return is_end!=rhs.is_end || team!=rhs.team || building_type!=rhs.building_type || level!=rhs.level || construction_site!=rhs.construction_site;
++ return bool(is_end!=rhs.is_end || team!=rhs.team || building_type!=rhs.building_type || level!=rhs.level || construction_site!=rhs.construction_site);
+ }
+
+