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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1FDF3139694 for ; Sat, 4 Mar 2017 04:38:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B91BD21C06A; Sat, 4 Mar 2017 04:38:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94DF221C06A for ; Sat, 4 Mar 2017 04:38:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8BFC5341783 for ; Sat, 4 Mar 2017 04:38:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6686A5BB4 for ; Sat, 4 Mar 2017 04:38:14 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1488602273.22e03954608e87d5ff1c6be11605d072cb1ab2dd.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-server/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-base/xorg-server/xorg-server-1.19.2.ebuild x11-base/xorg-server/xorg-server-9999.ebuild X-VCS-Directories: x11-base/xorg-server/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 22e03954608e87d5ff1c6be11605d072cb1ab2dd X-VCS-Branch: master Date: Sat, 4 Mar 2017 04:38:14 +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: 4902646c-c9cb-4ca7-a2ac-b456d9dfef40 X-Archives-Hash: ab23aea50dc98fdcd6a3e3f1cd91716b commit: 22e03954608e87d5ff1c6be11605d072cb1ab2dd Author: Kelly Ledford gmail com> AuthorDate: Sat Mar 4 02:03:30 2017 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Mar 4 04:37:53 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22e03954 x11-base/xorg-server: Warn about performance with USE="wayland -glamor" Bug: https://bugs.gentoo.org/608856 Closes: https://github.com/gentoo/gentoo/pull/4116 x11-base/xorg-server/xorg-server-1.19.2.ebuild | 7 +++++++ x11-base/xorg-server/xorg-server-9999.ebuild | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/x11-base/xorg-server/xorg-server-1.19.2.ebuild b/x11-base/xorg-server/xorg-server-1.19.2.ebuild index 5aeddbe5ee8..3245f045a35 100644 --- a/x11-base/xorg-server/xorg-server-1.19.2.ebuild +++ b/x11-base/xorg-server/xorg-server-1.19.2.ebuild @@ -154,6 +154,13 @@ pkg_pretend() { die "Sorry, but gcc earlier than 4.0 will not work for xorg-server." } +pkg_setup() { + if use wayland && ! use glamor; then + ewarn "glamor is necessary for acceleration under Xwayland." + ewarn "Performance may be unacceptable without it." + fi +} + src_configure() { # localstatedir is used for the log location; we need to override the default # from ebuild.sh diff --git a/x11-base/xorg-server/xorg-server-9999.ebuild b/x11-base/xorg-server/xorg-server-9999.ebuild index 812c9fb6f5f..f4f1bdf7916 100644 --- a/x11-base/xorg-server/xorg-server-9999.ebuild +++ b/x11-base/xorg-server/xorg-server-9999.ebuild @@ -152,6 +152,13 @@ pkg_pretend() { die "Sorry, but gcc earlier than 4.0 will not work for xorg-server." } +pkg_setup() { + if use wayland && ! use glamor; then + ewarn "glamor is necessary for acceleration under Xwayland." + ewarn "Performance may be unacceptable without it." + fi +} + src_configure() { # localstatedir is used for the log location; we need to override the default # from ebuild.sh