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 280B615808B for ; Wed, 30 Mar 2022 07:18:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6AB72E07AE; Wed, 30 Mar 2022 07:18:48 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4FEB5E07AE for ; Wed, 30 Mar 2022 07:18:46 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1EF53341145 for ; Wed, 30 Mar 2022 07:18:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8BB1250 for ; Wed, 30 Mar 2022 07:18:43 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1648624717.badb974e4774dc877ff652fc712114c9d1b5f6d9.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs/emacs-29.0.9999.ebuild X-VCS-Directories: app-editors/emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: badb974e4774dc877ff652fc712114c9d1b5f6d9 X-VCS-Branch: master Date: Wed, 30 Mar 2022 07:18: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 27fa617e-f524-4990-993b-e0f49d49769d X-Archives-Hash: 87fe821d06cf65a7d0c2066900439545 commit: badb974e4774dc877ff652fc712114c9d1b5f6d9 Author: Ulrich Müller gentoo org> AuthorDate: Wed Mar 30 07:17:27 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Mar 30 07:18:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=badb974e app-editors/emacs: Always enable toolkit-scroll-bars with pure GTK Closes: https://bugs.gentoo.org/836392 Signed-off-by: Ulrich Müller gentoo.org> app-editors/emacs/emacs-29.0.9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-editors/emacs/emacs-29.0.9999.ebuild b/app-editors/emacs/emacs-29.0.9999.ebuild index b26146f171bc..bb9b91c9c741 100644 --- a/app-editors/emacs/emacs-29.0.9999.ebuild +++ b/app-editors/emacs/emacs-29.0.9999.ebuild @@ -232,9 +232,9 @@ src_configure() { elif use gtk && ! use X; then einfo "Configuring to build with pure GTK (without X11) support" myconf+=" --with-pgtk --without-x --without-ns" + myconf+=" --with-toolkit-scroll-bars" #836392 myconf+=" $(use_with gconf)" myconf+=" $(use_with gsettings)" - myconf+=" $(use_with toolkit-scroll-bars)" myconf+=" $(use_with harfbuzz)" myconf+=" $(use_with m17n-lib libotf)" myconf+=" $(use_with m17n-lib m17n-flt)"