Date: Thu, 8 Oct 2015 19:52:00 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398891 - head/security/stunnel Message-ID: <201510081952.t98Jq0QM085662@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510081952.t98Jq0QM085662>