Index: head/games/crack-attack/files/patch-src_Communicator.cxx =================================================================== --- head/games/crack-attack/files/patch-src_Communicator.cxx (nonexistent) +++ head/games/crack-attack/files/patch-src_Communicator.cxx (revision 460008) @@ -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' 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); + } Property changes on: head/games/crack-attack/files/patch-src_Communicator.cxx ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property