Index: head/audio/ecasound/files/patch-ecasound_eca-neteci-server.cpp =================================================================== --- head/audio/ecasound/files/patch-ecasound_eca-neteci-server.cpp (nonexistent) +++ head/audio/ecasound/files/patch-ecasound_eca-neteci-server.cpp (revision 458275) @@ -0,0 +1,25 @@ +libc++ doesn't like "using namespace std" in C++11 + +eca-neteci-server.cpp:179:11: error: assigning to 'int' from incompatible type '__bind' + res = bind(srvfd_rep, (struct sockaddr*)&addr_un_rep, sizeof(addr_un_rep)); + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +eca-neteci-server.cpp:181:11: error: assigning to 'int' from incompatible type '__bind' + res = bind(srvfd_rep, (struct sockaddr*)&addr_in_rep, sizeof(addr_in_rep)); + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +--- ecasound/eca-neteci-server.cpp.orig 2011-04-05 20:36:01 UTC ++++ ecasound/eca-neteci-server.cpp +@@ -176,9 +176,9 @@ void ECA_NETECI_SERVER::open_server_socket(void) + + int res = 0; + if (unix_sockets_rep == true) +- res = bind(srvfd_rep, (struct sockaddr*)&addr_un_rep, sizeof(addr_un_rep)); ++ res = ::bind(srvfd_rep, (struct sockaddr*)&addr_un_rep, sizeof(addr_un_rep)); + else +- res = bind(srvfd_rep, (struct sockaddr*)&addr_in_rep, sizeof(addr_in_rep)); ++ res = ::bind(srvfd_rep, (struct sockaddr*)&addr_in_rep, sizeof(addr_in_rep)); + + if (res == 0) { + res = listen(srvfd_rep, 5); Property changes on: head/audio/ecasound/files/patch-ecasound_eca-neteci-server.cpp ___________________________________________________________________ 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