From nobody Sat Oct 16 03:58:26 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id E19531808054; Sat, 16 Oct 2021 03:58:26 +0000 (UTC) (envelope-from git@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 4HWTrf5xZMz4TT6; Sat, 16 Oct 2021 03:58:26 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AC93413307; Sat, 16 Oct 2021 03:58:26 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19G3wQKV004184; Sat, 16 Oct 2021 03:58:26 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19G3wQvX004183; Sat, 16 Oct 2021 03:58:26 GMT (envelope-from git) Date: Sat, 16 Oct 2021 03:58:26 GMT Message-Id: <202110160358.19G3wQvX004183@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Bryan Drewery Subject: git: 02dbfbc67645 - main - security/openssh-portable: libfido fix went in 505373243 List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: bdrewery X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 02dbfbc67645e88e9865f2885b124da170688c33 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by bdrewery: URL: https://cgit.FreeBSD.org/ports/commit/?id=02dbfbc67645e88e9865f2885b124da170688c33 commit 02dbfbc67645e88e9865f2885b124da170688c33 Author: Bryan Drewery AuthorDate: 2021-10-15 17:40:19 +0000 Commit: Bryan Drewery CommitDate: 2021-10-16 03:58:23 +0000 security/openssh-portable: libfido fix went in 505373243 --- security/openssh-portable/Makefile | 2 -- .../files/extra-patch-libfido2-configure.ac | 16 ---------------- 2 files changed, 18 deletions(-) diff --git a/security/openssh-portable/Makefile b/security/openssh-portable/Makefile index b5c9e473c388..d2c9b245de3a 100644 --- a/security/openssh-portable/Makefile +++ b/security/openssh-portable/Makefile @@ -89,8 +89,6 @@ BSM_CONFIGURE_ON= --with-audit=bsm FIDO_U2F_LIB_DEPENDS= libfido2.so:security/libfido2 FIDO_U2F_CONFIGURE_ON= --with-security-key-builtin FIDO_U2F_CONFIGURE_OFF= --disable-security-key -# Until https://reviews.freebsd.org/D27289 is committed -FIDO_U2F_EXTRA_PATCHES= ${FILESDIR}/extra-patch-libfido2-configure.ac BLACKLISTD_EXTRA_PATCHES= ${FILESDIR}/extra-patch-blacklistd diff --git a/security/openssh-portable/files/extra-patch-libfido2-configure.ac b/security/openssh-portable/files/extra-patch-libfido2-configure.ac deleted file mode 100644 index 6cd9a550119b..000000000000 --- a/security/openssh-portable/files/extra-patch-libfido2-configure.ac +++ /dev/null @@ -1,16 +0,0 @@ -Workaround libfido2 package having a libfido2.pc that requires libcrypto -even with base OpenSSL which does not provide the proper pc file. - ---- configure.ac.orig 2020-11-19 14:21:03.890890000 -0800 -+++ configure.ac 2020-11-19 14:21:57.061193000 -0800 -@@ -3256,8 +3256,8 @@ if test "x$enable_sk" = "xyes" -a "x$enable_sk_interna - fi - fi - if test "x$use_pkgconfig_for_libfido2" = "xyes"; then -- LIBFIDO2=`$PKGCONFIG --libs libfido2` -- CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libfido2`" -+ LIBFIDO2="-lfido2 -lcrypto" -+ #CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libfido2`" - else - LIBFIDO2="-lfido2 -lcbor" - fi