Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Jan 2018 14:19:44 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r458275 - head/audio/ecasound/files
Message-ID:  <201801061419.w06EJihQ074686@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Sat Jan  6 14:19:44 2018
New Revision: 458275
URL: https://svnweb.freebsd.org/changeset/ports/458275

Log:
  audio/ecasound: unbreak build with Clang 6 (C++14 by default)
  
  eca-neteci-server.cpp:179:11: error: assigning to 'int' from incompatible type '__bind<int &,
        sockaddr *, unsigned long>'
      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<int &,
        sockaddr *, unsigned long>'
      res = bind(srvfd_rep, (struct sockaddr*)&addr_in_rep, sizeof(addr_in_rep));
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  
  Reported by:	antoine (via bug 224669)

Added:
  head/audio/ecasound/files/patch-ecasound_eca-neteci-server.cpp   (contents, props changed)

Added: head/audio/ecasound/files/patch-ecasound_eca-neteci-server.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/ecasound/files/patch-ecasound_eca-neteci-server.cpp	Sat Jan  6 14:19:44 2018	(r458275)
@@ -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<int &,
+      sockaddr *, unsigned long>'
+    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<int &,
+      sockaddr *, unsigned long>'
+    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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801061419.w06EJihQ074686>