svn commit: r474070 - head/net/dbeacon

Tobias Kortkamp tobik at FreeBSD.org
Sat Jul 7 10:39:59 UTC 2018


Author: tobik
Date: Sat Jul  7 10:39:58 2018
New Revision: 474070
URL: https://svnweb.freebsd.org/changeset/ports/474070

Log:
  net/dbeacon: Fix build with Clang 6
  
  dbeacon.cpp:415:78: error: invalid operands to binary expression ('__bind<int &,
        sockaddr *, int>' and 'int')
    ...(bind(mcastSock, beaconUnicastAddr.saddr(), beaconUnicastAddr.addrlen()) != 0) {
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^  ~
  
  - Follow MASTER_SITES redirect
  
  PR:		226232
  Submitted by:	maintainer

Modified:
  head/net/dbeacon/Makefile

Modified: head/net/dbeacon/Makefile
==============================================================================
--- head/net/dbeacon/Makefile	Sat Jul  7 10:37:52 2018	(r474069)
+++ head/net/dbeacon/Makefile	Sat Jul  7 10:39:58 2018	(r474070)
@@ -4,7 +4,7 @@
 PORTNAME=	dbeacon
 PORTVERSION=	0.3.9.1
 CATEGORIES=	net
-MASTER_SITES=	http://BSDforge.com/projects/source/net/dbeacon/
+MASTER_SITES=	https://BSDforge.com/projects/source/net/dbeacon/
 
 MAINTAINER=	portmaster at BSDforge.com
 COMMENT=	Distributed multicast beacon server
@@ -12,6 +12,7 @@ COMMENT=	Distributed multicast beacon server
 LICENSE=	GPLv2+
 
 USES=		gmake
+USE_CXXSTD=	c++98
 
 PLIST_FILES=	bin/dbeacon man/man1/dbeacon.1.gz
 USE_RC_SUBR=	dbeacon


More information about the svn-ports-all mailing list