Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Apr 2019 05:44:51 +0000 (UTC)
From:      Eugene Grosbein <eugen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r499811 - head/security/gost-engine
Message-ID:  <201904240544.x3O5ipGV098570@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eugen
Date: Wed Apr 24 05:44:50 2019
New Revision: 499811
URL: https://svnweb.freebsd.org/changeset/ports/499811

Log:
  openssl/gost-engine: specify OPENSSL_ENGINES_DIR explicitly
  because the software does not always determine it automatically
  in FreeBSD environment.
  
  No PORTREVISION bump as it unbreaks build.

Modified:
  head/security/gost-engine/Makefile

Modified: head/security/gost-engine/Makefile
==============================================================================
--- head/security/gost-engine/Makefile	Wed Apr 24 05:38:19 2019	(r499810)
+++ head/security/gost-engine/Makefile	Wed Apr 24 05:44:50 2019	(r499811)
@@ -18,7 +18,10 @@ BROKEN_SSL_REASON_openssl=	needs features only availab
 
 USES=		cmake ssl
 
-CMAKE_ARGS+=	-DOPENSSL_ROOT_DIR=${OPENSSLBASE}
+ENGINESDIR?=	${PREFIX}/lib/engines-1.1
+
+CMAKE_ARGS+=	-DOPENSSL_ROOT_DIR=${OPENSSLBASE} \
+		-DOPENSSL_ENGINES_DIR=${ENGINESDIR}
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	gost-engine



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