From patchwork Sun Nov 22 16:00:07 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Cercueil X-Patchwork-Id: 1404496 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=crapouillou.net Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4CfFPB3L7Nz9sSf for ; Mon, 23 Nov 2020 03:00:30 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id E76D4203A9; Sun, 22 Nov 2020 16:00:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BSQZO2W4jLB7; Sun, 22 Nov 2020 16:00:24 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 2E54920371; Sun, 22 Nov 2020 16:00:24 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 489151BF378 for ; Sun, 22 Nov 2020 16:00:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 44A90868EB for ; Sun, 22 Nov 2020 16:00:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DtzdJL4LdPmO for ; Sun, 22 Nov 2020 16:00:21 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from aposti.net (aposti.net [89.234.176.197]) by whitealder.osuosl.org (Postfix) with ESMTPS id 042D586890 for ; Sun, 22 Nov 2020 16:00:20 +0000 (UTC) From: Paul Cercueil To: buildroot@buildroot.org Date: Sun, 22 Nov 2020 16:00:07 +0000 Message-Id: <20201122160008.44129-1-paul@crapouillou.net> MIME-Version: 1.0 Subject: [Buildroot] [PATCH 1/2] wlroots: package does not require locale support X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Adrian Perez de Castro , Paul Cercueil Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Drop dependency on BR2_ENABLE_LOCALE, which was marked as a dependency of libinput which is selected by wlroots. However, libinput does not depend at all on BR2_ENABLE_LOCALE. Signed-off-by: Paul Cercueil --- package/wlroots/Config.in | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package/wlroots/Config.in b/package/wlroots/Config.in index eb4c4725ac..2f72fd4945 100644 --- a/package/wlroots/Config.in +++ b/package/wlroots/Config.in @@ -3,16 +3,14 @@ comment "wlroots needs udev, mesa3d w/ EGL and GLES support" !BR2_PACKAGE_MESA3D_OPENGL_ES || \ !BR2_PACKAGE_HAS_UDEV -comment "wlroots needs a toolchain w/ threads, locale, dynamic library" +comment "wlroots needs a toolchain w/ threads, dynamic library" depends on !BR2_TOOLCHAIN_HAS_THREADS || \ - !BR2_ENABLE_LOCALE || \ BR2_STATIC_LIBS config BR2_PACKAGE_WLROOTS bool "wlroots" depends on !BR2_STATIC_LIBS # wayland depends on BR2_TOOLCHAIN_HAS_THREADS # libdrm, wayland - depends on BR2_ENABLE_LOCALE # libinput depends on BR2_PACKAGE_HAS_UDEV # libinput # Technically wlroots should work with any OpenGL implementation # which provides EGL, GLES2, and libgbm; but in practice only