From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id F128D13888F for ; Sat, 31 Oct 2015 10:13:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9909DE080A; Sat, 31 Oct 2015 10:13:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34CA9E080A for ; Sat, 31 Oct 2015 10:13:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0EA05340AA9 for ; Sat, 31 Oct 2015 10:13:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B8DBD1C00 for ; Sat, 31 Oct 2015 10:13:43 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1446203570.44c505591f7e37d3e10e0d6f522df56d1de1d78c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/openssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/openssh/openssh-7.1_p1-r2.ebuild X-VCS-Directories: net-misc/openssh/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 44c505591f7e37d3e10e0d6f522df56d1de1d78c X-VCS-Branch: master Date: Sat, 31 Oct 2015 10:13:43 +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-Archives-Salt: a701e811-2028-46ba-9a0a-0a93622f9ba5 X-Archives-Hash: 78458f12d2c36ed283b76d6e8c328e14 commit: 44c505591f7e37d3e10e0d6f522df56d1de1d78c Author: Yuta Satoh gentoo gr jp> AuthorDate: Fri Oct 30 11:12:50 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Oct 30 11:12:50 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44c50559 net-misc/openssh: Drop special settings for Gentoo/FreeBSD 9.0 or later. net-misc/openssh/openssh-7.1_p1-r2.ebuild | 6 ------ 1 file changed, 6 deletions(-) diff --git a/net-misc/openssh/openssh-7.1_p1-r2.ebuild b/net-misc/openssh/openssh-7.1_p1-r2.ebuild index 048f319..7ab7d10 100644 --- a/net-misc/openssh/openssh-7.1_p1-r2.ebuild +++ b/net-misc/openssh/openssh-7.1_p1-r2.ebuild @@ -207,12 +207,6 @@ src_configure() { # The seccomp sandbox is broken on x32, so use the older method for now. #553748 use amd64 && [[ ${ABI} == "x32" ]] && myconf+=( --with-sandbox=rlimit ) - # Special settings for Gentoo/FreeBSD 9.0 or later (see bug #391011) - if use elibc_FreeBSD && version_is_at_least 9.0 "$(uname -r|sed 's/\(.\..\).*/\1/')" ; then - myconf+=( --disable-utmp --disable-wtmp --disable-wtmpx ) - append-ldflags -lutil - fi - econf "${myconf[@]}" }