From owner-svn-ports-all@freebsd.org Mon Jan 25 08:55:01 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E41F84EF0C0; Mon, 25 Jan 2021 08:55:01 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DPNwj4zvlz3KxC; Mon, 25 Jan 2021 08:55:01 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9DA971377F; Mon, 25 Jan 2021 08:55:01 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10P8t1CC017453; Mon, 25 Jan 2021 08:55:01 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10P8t11M017452; Mon, 25 Jan 2021 08:55:01 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <202101250855.10P8t11M017452@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 25 Jan 2021 08:55:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r562548 - head/archivers/xar X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/archivers/xar X-SVN-Commit-Revision: 562548 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jan 2021 08:55:02 -0000 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 - -.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 +.include