From patchwork Sat Jul 29 13:18:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adrian Perez de Castro X-Patchwork-Id: 795207 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=igalia.com header.i=@igalia.com header.b="YZkTf0oq"; dkim-atps=neutral Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xKRBJ4YH2z9s8P for ; Sat, 29 Jul 2017 23:19:04 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 60F0788C55; Sat, 29 Jul 2017 13:19:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id X2c9KgagNiOC; Sat, 29 Jul 2017 13:18:58 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id AF5C988C54; Sat, 29 Jul 2017 13:18:58 +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 BB0741C23D7 for ; Sat, 29 Jul 2017 13:18:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B49A486B6B for ; Sat, 29 Jul 2017 13:18:57 +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 mXq-FWpCd4FE for ; Sat, 29 Jul 2017 13:18:57 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from fanzine.igalia.com (fanzine.igalia.com [91.117.99.155]) by whitealder.osuosl.org (Postfix) with ESMTPS id EB35983E89 for ; Sat, 29 Jul 2017 13:18:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Message-Id:Date:Subject:Cc:To:From; bh=++iJV6ufoSLWId+tv9+10f6hGIFFCYB5C97A+ty70wk=; b=YZkTf0oqJlOvdhlufw7UruMeOUKO3PaMTAw46zg82J3ktvZqalWhmH9jysUyYrIf9Sp+FRgFcqE/5pMnGB1uIKWcm8MhGFc9fT1C+MooQvkme60OLSEjhlwjgyFVuEWww89GTaen1xRqP+4yQVrsS9Pgf2wYncW2lHqvcwi22LXegbL6MwIuzr1f+jcd+ZPGZX8FCNj7w4pOAYNoYgofbHrelUy8c6jXKmpTvGUokHIIf5+YNMdszDvqfoBVT8mGkCCdYuAeRfQ7ztjpzWkN4xGNKtwLhc05uXT82gCPenDx6eFWyaue9q7TN/vtl65CsqXygpUlYlMG392J70XSIQ==; Received: from 82-181-186-227.bb.dnainternet.fi ([82.181.186.227] helo=momiji) by fanzine.igalia.com with esmtpsa (Cipher TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim) id 1dbRdu-0000fn-Vj; Sat, 29 Jul 2017 15:18:55 +0200 Received: from localhost (momiji [local]) by momiji (OpenSMTPD) with ESMTPA id 1447a024; Sat, 29 Jul 2017 13:18:44 +0000 (UTC) From: Adrian Perez de Castro To: buildroot@buildroot.org Date: Sat, 29 Jul 2017 16:18:44 +0300 Message-Id: <20170729131844.3502-1-aperez@igalia.com> X-Mailer: git-send-email 2.13.3 Cc: Adrian Perez de Castro Subject: [Buildroot] [PATCH 1/1] webkitgtk: Allow building with BR2_PACKAGE_WEBKITGTK_MULTIMEDIA disabled X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Explicitly pass "-DENABLE_MEDIA_STREAM=OFF" to CMake, to workaround a missing feature dependency in the WebKitGTK+ build files. Related upstream bug: https://bugs.webkit.org/show_bug.cgi?id=174940 Signed-off-by: Adrian Perez de Castro --- package/webkitgtk/webkitgtk.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package/webkitgtk/webkitgtk.mk b/package/webkitgtk/webkitgtk.mk index b200d23262..e30d07fc1d 100644 --- a/package/webkitgtk/webkitgtk.mk +++ b/package/webkitgtk/webkitgtk.mk @@ -40,9 +40,13 @@ WEBKITGTK_CONF_OPTS += \ -DENABLE_WEB_AUDIO=ON WEBKITGTK_DEPENDENCIES += gstreamer1 gst1-libav gst1-plugins-base gst1-plugins-good else +# ENABLE_MEDIA_STREAM has to be explicitly disabled because there is a missing +# feature dependency in the WebKitGTK+ CMake files. This can be removed once +# https://bugs.webkit.org/show_bug.cgi?id=174940 makes it into a release. WEBKITGTK_CONF_OPTS += \ -DENABLE_VIDEO=OFF \ - -DENABLE_WEB_AUDIO=OFF + -DENABLE_WEB_AUDIO=OFF \ + -DENABLE_MEDIA_STREAM=OFF endif # Only one target platform can be built, assume X11 > Wayland