diff options
author | rm <rm@FreeBSD.org> | 2013-09-11 06:31:42 +0800 |
---|---|---|
committer | rm <rm@FreeBSD.org> | 2013-09-11 06:31:42 +0800 |
commit | 74fb232fba119227d49ae3b3dfca5ccf89f6143f (patch) | |
tree | 54e2faf7cb52fba5ffd4d30ac8693a42298ffb6f /games | |
parent | 67f0c1ae295da5f9c6346b1ceb657dd2f1faf070 (diff) | |
download | freebsd-ports-gnome-74fb232fba119227d49ae3b3dfca5ccf89f6143f.tar.gz freebsd-ports-gnome-74fb232fba119227d49ae3b3dfca5ccf89f6143f.tar.zst freebsd-ports-gnome-74fb232fba119227d49ae3b3dfca5ccf89f6143f.zip |
- add upstream patch to fix build on -CURRENT
PR: 181976
Submitted by: Kevin Zheng <kevinz5000@gmail.com> (maintainer)
Diffstat (limited to 'games')
-rw-r--r-- | games/bzflag/files/patch-include_VotingArbiter.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/games/bzflag/files/patch-include_VotingArbiter.h b/games/bzflag/files/patch-include_VotingArbiter.h new file mode 100644 index 000000000000..d946b3019453 --- /dev/null +++ b/games/bzflag/files/patch-include_VotingArbiter.h @@ -0,0 +1,20 @@ +--- ./include/VotingArbiter.h.orig 2012-07-16 03:32:02.000000000 +0400 ++++ ./include/VotingArbiter.h 2013-09-11 02:18:23.000000000 +0400 +@@ -230,12 +230,11 @@ + + }; + +- +-inline VotingArbiter::VotingArbiter(unsigned short int voteTime=60, +- unsigned short int vetoTime=20, +- unsigned short int votesRequired=2, +- float votePercentage=50.1, +- unsigned short int voteRepeatTime=300) ++inline VotingArbiter::VotingArbiter(unsigned short int voteTime, ++ unsigned short int vetoTime, ++ unsigned short int votesRequired, ++ float votePercentage, ++ unsigned short int voteRepeatTime) + : _votingBooth(NULL), + _maxVotes(votesRequired+1), + _voteTime(voteTime), |