diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2015-10-08 19:52:00 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2015-10-08 19:52:00 +0000 |
commit | 55f070c203cc72c3c0d98afbf56a5c5579b4e992 (patch) | |
tree | 2b56a0202a1b3cf1bc6ee0f81eadd7d61292459f | |
parent | Fix build on FreeBSD 9.* (diff) |
Unbreak INDEX
Notes
Notes:
svn path=/head/; revision=398891
-rw-r--r-- | security/stunnel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/stunnel/Makefile b/security/stunnel/Makefile index 175b306085d7..40bc9648629c 100644 --- a/security/stunnel/Makefile +++ b/security/stunnel/Makefile @@ -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 |