svn commit: r438117 - head/security/bearssl

Mark Felder feld at FreeBSD.org
Sun Apr 9 20:05:39 UTC 2017


Author: feld
Date: Sun Apr  9 20:05:37 2017
New Revision: 438117
URL: https://svnweb.freebsd.org/changeset/ports/438117

Log:
  security/bearssl: Fix build with Clang
  
  Using MAKE_ARGS allows building with clang.
  
  Submitted by:	bapt

Modified:
  head/security/bearssl/Makefile

Modified: head/security/bearssl/Makefile
==============================================================================
--- head/security/bearssl/Makefile	Sun Apr  9 19:53:33 2017	(r438116)
+++ head/security/bearssl/Makefile	Sun Apr  9 20:05:37 2017	(r438117)
@@ -3,7 +3,7 @@
 
 PORTNAME=	bearssl
 PORTVERSION=	0.4
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	security devel
 MASTER_SITES=	https://bearssl.org/
 
@@ -12,7 +12,7 @@ COMMENT=	Implementation of TLS/SSL in C
 
 LICENSE=	MIT
 
-USE_GCC=	yes
+MAKE_ARGS=	CC="${CC}" LD="${CC}" CFLAGS="${CFLAGS} -fPIC" LDDLL="${CC}"
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/build/brssl ${STAGEDIR}${LOCALBASE}/bin/


More information about the svn-ports-head mailing list