svn commit: r398891 - head/security/stunnel

Antoine Brodin antoine at FreeBSD.org
Thu Oct 8 19:52:02 UTC 2015


Author: antoine
Date: Thu Oct  8 19:52:00 2015
New Revision: 398891
URL: https://svnweb.freebsd.org/changeset/ports/398891

Log:
  Unbreak INDEX

Modified:
  head/security/stunnel/Makefile

Modified: head/security/stunnel/Makefile
==============================================================================
--- head/security/stunnel/Makefile	Thu Oct  8 19:38:57 2015	(r398890)
+++ head/security/stunnel/Makefile	Thu Oct  8 19:52:00 2015	(r398891)
@@ -72,11 +72,11 @@ CONFIGURE_ARGS+=--with-threads=pthread
 LDFLAGS+=	-lpthread
 .endif
 
-.if ${PORT_OPTIONS:MFIPS} && "${OPENSSL_PORT}" == "security/libressl"
+.if ${PORT_OPTIONS:MFIPS} && defined(OPENSSL_PORT) && ${OPENSSL_PORT} == security/libressl
 IGNORE=		LibreSSL does not support FIPS standard
 .endif
 
-.if "${OPENSSL_PORT}" == "security/libressl"
+.if defined(OPENSSL_PORT) && ${OPENSSL_PORT} == security/libressl
 NO_PACKAGE=	The stunnel license restricts distribution when linked to non-OpenSSL non-base SSL-libraries
 .endif
 


More information about the svn-ports-all mailing list