security/openssl_tpm_engine: Document SSL requirement, IGNORE LIbreSSL
It appears that the RAND_METHOD structure is not present in LibreSSL so that SSL_DEFAULT=libressl* is incompatible with this port. SSL flags have been added to support non-base OpenSSL libraries though. Approved by: SSL blanket
This commit is contained in:
parent
494f40a05f
commit
f04235f80a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=422042
@ -16,11 +16,11 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
RUN_DEPENDS= ${LOCALBASE}/sbin/tcsd:security/trousers
|
||||
LIB_DEPENDS= libtspi.so:security/trousers
|
||||
|
||||
USES= autoreconf gmake libtool
|
||||
USES= autoreconf gmake libtool ssl
|
||||
USE_LDCONFIG= yes
|
||||
GNU_CONFIGURE= yes
|
||||
LDFLAGS+= -L${LOCALBASE}/lib -lcrypto
|
||||
CFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${OPENSSLLIB} -lcrypto -L${LOCALBASE}/lib
|
||||
CFLAGS+= -I${OPENSSLINC} -I${LOCALBASE}/include
|
||||
SUB_FILES= pkg-message
|
||||
PLIST_FILES= bin/create_tpm_key \
|
||||
lib/openssl/engines/libtpm.so \
|
||||
@ -31,6 +31,12 @@ PORTEXAMPLES= openssl.cnf.sample
|
||||
|
||||
OPTIONS_DEFINE= EXAMPLES
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${SSL_DEFAULT:Mlibressl*}
|
||||
IGNORE= Detected LibreSSL (RAND_METHOD structure unsupported)
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|g' \
|
||||
${WRKSRC}/openssl.cnf.sample
|
||||
@ -39,4 +45,4 @@ post-install-EXAMPLES-on:
|
||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/openssl.cnf.sample ${STAGEDIR}${EXAMPLESDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user