diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2018-07-07 10:39:58 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2018-07-07 10:39:58 +0000 |
commit | c321a67c68929c2d789895d77dbb1e118ec54f23 (patch) | |
tree | ecad0f6f1c1bb1002b556d4b47f1d9761adae39d | |
parent | New Port: www/archiva (diff) |
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
Notes
Notes:
svn path=/head/; revision=474070
-rw-r--r-- | net/dbeacon/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/dbeacon/Makefile b/net/dbeacon/Makefile index 3345255ea0d3..085a956ed597 100644 --- a/net/dbeacon/Makefile +++ b/net/dbeacon/Makefile @@ -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 |