diff options
author | miwi <miwi@FreeBSD.org> | 2007-06-21 18:02:21 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-06-21 18:02:21 +0800 |
commit | d0077ca9acc08f145ee486e331c6b5b76ad12f14 (patch) | |
tree | f279e03480f2afc1e90c2d525e8eabea0964c5a9 /games | |
parent | db13ebddcfa6a3a1bfb39d19066271a02918eb2a (diff) | |
download | freebsd-ports-gnome-d0077ca9acc08f145ee486e331c6b5b76ad12f14.tar.gz freebsd-ports-gnome-d0077ca9acc08f145ee486e331c6b5b76ad12f14.tar.zst freebsd-ports-gnome-d0077ca9acc08f145ee486e331c6b5b76ad12f14.zip |
- Fix build with gcc 4.2
PR: 113863
Submitted by: Max Brazhnikov <makc@issp.ac.ru> (maintainer)
Diffstat (limited to 'games')
-rw-r--r-- | games/hexxagon/files/patch-src__libhexx__bitboard64.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/games/hexxagon/files/patch-src__libhexx__bitboard64.h b/games/hexxagon/files/patch-src__libhexx__bitboard64.h new file mode 100644 index 000000000000..adc8062c3f63 --- /dev/null +++ b/games/hexxagon/files/patch-src__libhexx__bitboard64.h @@ -0,0 +1,16 @@ +--- ./src/libhexx/bitboard64.h.orig Fri Jan 14 00:19:07 2005 ++++ ./src/libhexx/bitboard64.h Sun Jun 3 18:27:59 2007 +@@ -26,8 +26,12 @@ + #include <netinet/in.h> + #include <iostream> + +-namespace libhexx ++namespace libhexx + { ++ ++ std::ostream& operator<<(std::ostream &output, const class BitBoard64 &b); ++ std::istream& operator>>(std::istream &input, class BitBoard64 &b); ++ + class BitBoard64 + { + public: |