1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00

Rename (BROKEN|IGNORE)_OPENSSL to \1_SSL.

Suggested by:	sunpoet
Sponsored by:	Absolight
This commit is contained in:
Mathieu Arnold 2017-04-14 14:42:59 +00:00
parent 8edc279574
commit ca46f0a3a3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=438518
4 changed files with 15 additions and 15 deletions

View File

@ -77,21 +77,21 @@ OPENSSL_PORT= security/${SSL_DEFAULT}
.error You are using an unsupported SSL provider ${SSL_DEFAULT}
. endif
. if defined(BROKEN_OPENSSL) && ${BROKEN_OPENSSL:M${SSL_DEFAULT}}
. if defined(BROKEN_OPENSSL_REASON_${SSL_DEFAULT})
BROKEN= ${BROKEN_OPENSSL_REASON_${SSL_DEFAULT}}
. elif defined(BROKEN_OPENSSL_REASON)
BROKEN= ${BROKEN_OPENSSL_REASON}
. if defined(BROKEN_SSL) && ${BROKEN_SSL:M${SSL_DEFAULT}}
. if defined(BROKEN_SSL_REASON_${SSL_DEFAULT})
BROKEN= ${BROKEN_SSL_REASON_${SSL_DEFAULT}}
. elif defined(BROKEN_SSL_REASON)
BROKEN= ${BROKEN_SSL_REASON}
. else
BROKEN= does not build with DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT}
. endif
. endif
. if defined(IGNORE_OPENSSL) && ${IGNORE_OPENSSL:M${SSL_DEFAULT}}
. if defined(IGNORE_OPENSSL_REASON_${SSL_DEFAULT})
IGNORE= ${IGNORE_OPENSSL_REASON_${SSL_DEFAULT}}
. elif defined(IGNORE_OPENSSL_REASON)
IGNORE= ${IGNORE_OPENSSL_REASON}
. if defined(IGNORE_SSL) && ${IGNORE_SSL:M${SSL_DEFAULT}}
. if defined(IGNORE_SSL_REASON_${SSL_DEFAULT})
IGNORE= ${IGNORE_SSL_REASON_${SSL_DEFAULT}}
. elif defined(IGNORE_SSL_REASON)
IGNORE= ${IGNORE_SSL_REASON}
. else
IGNORE= not compatible DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT}
. endif

View File

@ -22,7 +22,7 @@ USES= gmake libtool perl5 ssl tar:tgz
USE_PERL5= build
USE_LDCONFIG= yes
BROKEN_OPENSSL= openssl-devel
BROKEN_SSL= openssl-devel
post-install:
${INSTALL_DATA} ${WRKSRC}/modules/expat/xmlparse/xmlparse.h \

View File

@ -29,8 +29,8 @@ SUB_FILES= ${APMOD_FILE}
APMOD_FILE= 240_${PORTNAME}.conf.sample
PLIST_SUB+= APMOD_FILE=${APMOD_FILE}
IGNORE_OPENSSL= libressl libressl-devel
IGNORE_OPENSSL_REASON= mod_auth_gssapi currently only supports OpenSSL
IGNORE_SSL= libressl libressl-devel
IGNORE_SSL_REASON= mod_auth_gssapi currently only supports OpenSSL
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEMODDIR}

View File

@ -82,8 +82,8 @@ CONFIGURE_ENV+= CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}"
MAKE_ENV+= BUILDTYPE=${BUILDTYPE}
BROKEN_OPENSSL= libressl libressl-devel
BROKEN_OPENSSL_REASON= incompatible with LibreSSL, please use www/apache24 with mod_http2
BROKEN_SSL= libressl libressl-devel
BROKEN_SSL_REASON= incompatible with LibreSSL, please use www/apache24 with mod_http2
.include <bsd.port.pre.mk>