Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 29 Dec 2020 13:26:18 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r559582 - head/net/radsecproxy
Message-ID:  <202012291326.0BTDQIvt018041@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue Dec 29 13:26:18 2020
New Revision: 559582
URL: https://svnweb.freebsd.org/changeset/ports/559582

Log:
  net/radsecproxy: fix build on GCC architectures
  
  GCC9 doesn't treat it as error:
  cc1: warnings being treated as errors
  radmsg.c: In function 'buf2radmsg':
  radmsg.c:299: warning: comparison is always false due to limited range of data type

Modified:
  head/net/radsecproxy/Makefile

Modified: head/net/radsecproxy/Makefile
==============================================================================
--- head/net/radsecproxy/Makefile	Tue Dec 29 13:21:37 2020	(r559581)
+++ head/net/radsecproxy/Makefile	Tue Dec 29 13:26:18 2020	(r559582)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 LIB_DEPENDS=	libnettle.so:security/nettle
 
-USES=		cpe localbase:ldflags ssl
+USES=		compiler:c11 cpe localbase:ldflags ssl
 USE_RC_SUBR=	${PORTNAME}
 CPE_VENDOR=	uninett
 



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