aboutsummaryrefslogtreecommitdiff
path: root/games/crack-attack
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2018-01-26 15:17:02 +0000
committerJan Beich <jbeich@FreeBSD.org>2018-01-26 15:17:02 +0000
commit9e3c4802ec160b2e12f7ac1fbbc09e8d1cfdf7b3 (patch)
treed54b076e81bf7db42ba4684f272a56a5bf9e37a3 /games/crack-attack
parent31ab75204c7b246c43f720838eee042435958be1 (diff)
downloadports-9e3c4802ec160b2e12f7ac1fbbc09e8d1cfdf7b3.tar.gz
ports-9e3c4802ec160b2e12f7ac1fbbc09e8d1cfdf7b3.zip
Notes
Diffstat (limited to 'games/crack-attack')
-rw-r--r--games/crack-attack/files/patch-src_Communicator.cxx17
1 files changed, 17 insertions, 0 deletions
diff --git a/games/crack-attack/files/patch-src_Communicator.cxx b/games/crack-attack/files/patch-src_Communicator.cxx
new file mode 100644
index 000000000000..036df0235fcd
--- /dev/null
+++ b/games/crack-attack/files/patch-src_Communicator.cxx
@@ -0,0 +1,17 @@
+libc++ doesn't like "using namespace std" in C++11
+
+Communicator.cxx:139:73: error: invalid operands to binary expression ('__bind<int &, sockaddr *, unsigned long>' and 'int')
+ if (bind(connection_socket, (sockaddr *) &address, sizeof(address)) < 0) {
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~
+
+--- src/Communicator.cxx.orig 2005-04-16 08:13:38 UTC
++++ src/Communicator.cxx
+@@ -136,7 +136,7 @@ void Communicator::initialize ( int mode, int port, ch
+ address.sin_addr.s_addr = htonl(INADDR_ANY);
+ address.sin_port = htons(port);
+
+- if (bind(connection_socket, (sockaddr *) &address, sizeof(address)) < 0) {
++ if (::bind(connection_socket, (sockaddr *) &address, sizeof(address)) < 0) {
+ cerr << "Port " << port << " is busy." << endl;
+ exit(1);
+ }