svn commit: r562548 - head/archivers/xar

Alexey Dokuchaev danfe at FreeBSD.org
Mon Jan 25 08:55:02 UTC 2021


Author: danfe
Date: Mon Jan 25 08:55:01 2021
New Revision: 562548
URL: https://svnweb.freebsd.org/changeset/ports/562548

Log:
  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.

Modified:
  head/archivers/xar/Makefile

Modified: head/archivers/xar/Makefile
==============================================================================
--- head/archivers/xar/Makefile	Mon Jan 25 08:50:06 2021	(r562547)
+++ head/archivers/xar/Makefile	Mon Jan 25 08:55:01 2021	(r562548)
@@ -17,17 +17,10 @@ USES=		gmake gnome libtool ssl
 USE_GNOME=	libxml2
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
+CONFIGURE_ENV=	ac_cv_lib_crypto_OpenSSL_add_all_ciphers=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
-
 post-install:
 	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} \
 		${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>


More information about the svn-ports-all mailing list