aboutsummaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2021-01-25 08:55:01 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2021-01-25 08:55:01 +0000
commit25d49cc4f705bfe23eedef0b74f99d5e65c57812 (patch)
tree874add8fbdfd310475ed018b4ac0c4359d530cda /archivers
parenta6483d4b0ff0d29986aed3d6acca4ec523553ad8 (diff)
downloadports-25d49cc4f705bfe23eedef0b74f99d5e65c57812.tar.gz
ports-25d49cc4f705bfe23eedef0b74f99d5e65c57812.zip
Do not check for OpenSSL_add_all_ciphers() existense in OpenSSL.
In OpenSSL versions prior to 1.1.0 these functions initialised and de-initialised this table. From OpenSSL 1.1.0 they are deprecated. No explicit initialisation or de-initialisation is required.
Notes
Notes: svn path=/head/; revision=562548
Diffstat (limited to 'archivers')
-rw-r--r--archivers/xar/Makefile11
1 files changed, 2 insertions, 9 deletions
diff --git a/archivers/xar/Makefile b/archivers/xar/Makefile
index 460d2c89dfd2..440c4b017bc2 100644
--- a/archivers/xar/Makefile
+++ b/archivers/xar/Makefile
@@ -17,17 +17,10 @@ USES= gmake gnome libtool ssl
USE_GNOME= libxml2
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
-
-.include <bsd.port.pre.mk>
-
-.if ${SSL_DEFAULT} == base
-BROKEN_FreeBSD_12= checking for OpenSSL_add_all_ciphers in -lcrypto... no
-BROKEN_FreeBSD_13= checking for OpenSSL_add_all_ciphers in -lcrypto... no
-BROKEN_FreeBSD_14= checking for OpenSSL_add_all_ciphers in -lcrypto... no
-.endif
+CONFIGURE_ENV= ac_cv_lib_crypto_OpenSSL_add_all_ciphers=yes
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} \
${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>