Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Jan 2021 08:55:01 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r562548 - head/archivers/xar
Message-ID:  <202101250855.10P8t11M017452@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101250855.10P8t11M017452>