From owner-svn-ports-head@freebsd.org Sat Jul 7 10:39:59 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CB5A1032484; Sat, 7 Jul 2018 10:39:59 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C35608F219; Sat, 7 Jul 2018 10:39:58 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A46BE163C1; Sat, 7 Jul 2018 10:39:58 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w67AdwZ4038566; Sat, 7 Jul 2018 10:39:58 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w67AdwoM038565; Sat, 7 Jul 2018 10:39:58 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201807071039.w67AdwoM038565@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sat, 7 Jul 2018 10:39:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474070 - head/net/dbeacon X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/net/dbeacon X-SVN-Commit-Revision: 474070 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2018 10:39:59 -0000 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' 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@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