From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DCDAF158086 for ; Fri, 3 Dec 2021 06:38:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5D9A2BC003; Fri, 3 Dec 2021 06:38:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5355B2BC003 for ; Fri, 3 Dec 2021 06:38:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 14276343228 for ; Fri, 3 Dec 2021 06:38:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8494014D for ; Fri, 3 Dec 2021 06:38:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1638513404.f679c94c410ce0678a8e8b06952421094f3c2f5e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/openssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/openssh/openssh-8.7_p1-r3.ebuild net-misc/openssh/openssh-8.8_p1-r2.ebuild net-misc/openssh/openssh-8.8_p1-r3.ebuild X-VCS-Directories: net-misc/openssh/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f679c94c410ce0678a8e8b06952421094f3c2f5e X-VCS-Branch: master Date: Fri, 3 Dec 2021 06:38:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1b39b75c-24d2-4689-b18c-7094c0ce499c X-Archives-Hash: 2bd759885ba874869f2983bef189c4d2 commit: f679c94c410ce0678a8e8b06952421094f3c2f5e Author: Sam James gentoo org> AuthorDate: Fri Dec 3 06:36:44 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Dec 3 06:36:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f679c94c net-misc/openssh: allow stack protector on musl x86 + musl ppc See: b28378fc2358c24785f41fdf92c00d617998ea3d Bug: https://bugs.gentoo.org/706210 Signed-off-by: Sam James gentoo.org> net-misc/openssh/openssh-8.7_p1-r3.ebuild | 5 ----- net-misc/openssh/openssh-8.8_p1-r2.ebuild | 5 ----- net-misc/openssh/openssh-8.8_p1-r3.ebuild | 5 ----- 3 files changed, 15 deletions(-) diff --git a/net-misc/openssh/openssh-8.7_p1-r3.ebuild b/net-misc/openssh/openssh-8.7_p1-r3.ebuild index d08c08baabcb..9a1a572b0363 100644 --- a/net-misc/openssh/openssh-8.7_p1-r3.ebuild +++ b/net-misc/openssh/openssh-8.7_p1-r3.ebuild @@ -308,11 +308,6 @@ src_configure() { ) if use elibc_musl; then - # stackprotect is broken on musl x86 and ppc - if use x86 || use ppc; then - myconf+=( --without-stackprotect ) - fi - # musl defines bogus values for UTMP_FILE and WTMP_FILE # https://bugs.gentoo.org/753230 myconf+=( --disable-utmp --disable-wtmp ) diff --git a/net-misc/openssh/openssh-8.8_p1-r2.ebuild b/net-misc/openssh/openssh-8.8_p1-r2.ebuild index b41b2579d815..a8039cdc405f 100644 --- a/net-misc/openssh/openssh-8.8_p1-r2.ebuild +++ b/net-misc/openssh/openssh-8.8_p1-r2.ebuild @@ -318,11 +318,6 @@ src_configure() { ) if use elibc_musl; then - # stackprotect is broken on musl x86 and ppc - if use x86 || use ppc; then - myconf+=( --without-stackprotect ) - fi - # musl defines bogus values for UTMP_FILE and WTMP_FILE # https://bugs.gentoo.org/753230 myconf+=( --disable-utmp --disable-wtmp ) diff --git a/net-misc/openssh/openssh-8.8_p1-r3.ebuild b/net-misc/openssh/openssh-8.8_p1-r3.ebuild index a146d8797f04..1c1068878712 100644 --- a/net-misc/openssh/openssh-8.8_p1-r3.ebuild +++ b/net-misc/openssh/openssh-8.8_p1-r3.ebuild @@ -308,11 +308,6 @@ src_configure() { ) if use elibc_musl; then - # stackprotect is broken on musl x86 and ppc - if use x86 || use ppc; then - myconf+=( --without-stackprotect ) - fi - # musl defines bogus values for UTMP_FILE and WTMP_FILE # https://bugs.gentoo.org/753230 myconf+=( --disable-utmp --disable-wtmp )