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 B3C1615AD33 for ; Wed, 10 May 2023 01:31:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A06F7E07BA; Wed, 10 May 2023 01:31:16 +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 858E1E07BA for ; Wed, 10 May 2023 01:31:16 +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 6F8DD340C08 for ; Wed, 10 May 2023 01:31:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7667920 for ; Wed, 10 May 2023 01:31:13 +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: <1683682018.46f7da87b8160cd6d809c568270b2857f67a8d35.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/elinks/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/elinks/elinks-0.16.1.1-r1.ebuild www-client/elinks/elinks-9999.ebuild X-VCS-Directories: www-client/elinks/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 46f7da87b8160cd6d809c568270b2857f67a8d35 X-VCS-Branch: master Date: Wed, 10 May 2023 01:31:13 +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: 282682d2-c2d4-413d-b3c1-b041e0b4c1f8 X-Archives-Hash: 2684c9cc24dcc3bc169ded46b26b9d16 commit: 46f7da87b8160cd6d809c568270b2857f67a8d35 Author: Felix Janda posteo de> AuthorDate: Tue May 9 22:40:12 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 10 01:26:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f7da87 www-client/elinks: fix compilation with USE="-nls" USE="-nls" indicates no nls/gettext, so we should pass -Dgettext=false in that case. Bug: https://bugs.gentoo.org/888952 Signed-off-by: Felix Janda posteo.de> Closes: https://github.com/gentoo/gentoo/pull/30963 Signed-off-by: Sam James gentoo.org> www-client/elinks/elinks-0.16.1.1-r1.ebuild | 2 +- www-client/elinks/elinks-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www-client/elinks/elinks-0.16.1.1-r1.ebuild b/www-client/elinks/elinks-0.16.1.1-r1.ebuild index 298434da8a24..12588d437631 100644 --- a/www-client/elinks/elinks-0.16.1.1-r1.ebuild +++ b/www-client/elinks/elinks-0.16.1.1-r1.ebuild @@ -88,7 +88,7 @@ src_configure() { $(meson_use ftp) -Dfsp=false -Dgemini=false - -Dgettext=true + $(meson_use nls gettext) $(meson_use gopher) $(meson_use gpm) $(meson_use guile) diff --git a/www-client/elinks/elinks-9999.ebuild b/www-client/elinks/elinks-9999.ebuild index 180537f142e7..9261011bf874 100644 --- a/www-client/elinks/elinks-9999.ebuild +++ b/www-client/elinks/elinks-9999.ebuild @@ -88,7 +88,7 @@ src_configure() { $(meson_use ftp) -Dfsp=false -Dgemini=false - -Dgettext=true + $(meson_use nls gettext) $(meson_use gopher) $(meson_use gpm) $(meson_use guile)