svn commit: r446079 - head/security/softhsm2

Danilo G. Baio dbaio at FreeBSD.org
Mon Jul 17 15:31:06 UTC 2017


Author: dbaio
Date: Mon Jul 17 15:31:04 2017
New Revision: 446079
URL: https://svnweb.freebsd.org/changeset/ports/446079

Log:
  security/softhsm2: Combine if statements

Modified:
  head/security/softhsm2/Makefile

Modified: head/security/softhsm2/Makefile
==============================================================================
--- head/security/softhsm2/Makefile	Mon Jul 17 15:18:36 2017	(r446078)
+++ head/security/softhsm2/Makefile	Mon Jul 17 15:31:04 2017	(r446079)
@@ -45,11 +45,7 @@ CRYP_OPEN_CONFIGURE_ON=	--with-crypto-backend=openssl
 
 .include <bsd.port.options.mk>
 
-.if ${SSL_DEFAULT:Mlibressl*}
-CONFIGURE_ARGS+=	--disable-gost
-.endif
-
-.if ${SSL_DEFAULT:Mopenssl-devel}
+.if ${SSL_DEFAULT:Mlibressl*} || ${SSL_DEFAULT:Mopenssl-devel}
 CONFIGURE_ARGS+=	--disable-gost
 .endif
 


More information about the svn-ports-all mailing list