From patchwork Mon Apr 17 19:54:10 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 751496 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3w6Jsl0sk2z9s2x for ; Tue, 18 Apr 2017 05:55:55 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 414D4309A8; Mon, 17 Apr 2017 19:55:53 +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 gaJ5k4nm-ZCT; Mon, 17 Apr 2017 19:55:47 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id A9D9C3093B; Mon, 17 Apr 2017 19:55:21 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id EF50E1BFF0C for ; Mon, 17 Apr 2017 19:54:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5F9D687FE8 for ; Mon, 17 Apr 2017 19:54:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aa2Qxe7XVal6 for ; Mon, 17 Apr 2017 19:54:45 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 0D25C87FEC for ; Mon, 17 Apr 2017 19:54:44 +0000 (UTC) Received: from fwd26.aul.t-online.de (fwd26.aul.t-online.de [172.20.26.131]) by mailout04.t-online.de (Postfix) with SMTP id F2E2441BBDF6 for ; Mon, 17 Apr 2017 21:54:42 +0200 (CEST) Received: from fli4l.lan.fli4l (TbzN+sZCohGnCON8fd6D4z8Ag1wn1TVcCbCq+zxlzZ5muxtvuPOgtQD7DlD3I4SQkr@[79.222.106.186]) by fwd26.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1d0CjS-0pzLI80; Mon, 17 Apr 2017 21:54:42 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:34688 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1d0CjR-00062C-6W for buildroot@buildroot.org; Mon, 17 Apr 2017 21:54:41 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Mon, 17 Apr 2017 21:54:10 +0200 Message-Id: <20170417195433.26672-12-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170417195433.26672-1-bernd.kuhls@t-online.de> References: <20170417195433.26672-1-bernd.kuhls@t-online.de> X-ID: TbzN+sZCohGnCON8fd6D4z8Ag1wn1TVcCbCq+zxlzZ5muxtvuPOgtQD7DlD3I4SQkr X-TOI-MSGID: 0f4dd931-258d-4d00-9468-86f9dbbe4a38 Subject: [Buildroot] [PATCH v5 11/34] package/kodi: move rtmp support to new addon kodi-inputstream-rtmp 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" rtmp support was moved from Kodi to an addon: https://github.com/xbmc/xbmc/commit/d04f43a4eb6f920cc42a28627b580f17e2be1bb5 Signed-off-by: Bernd Kuhls --- Config.in.legacy | 7 +++++++ package/kodi/Config.in | 7 ------- package/kodi/kodi.mk | 7 ------- 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a/Config.in.legacy b/Config.in.legacy index a13e4453b..5dddff6e3 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -145,6 +145,13 @@ endif ############################################################################### comment "Legacy options removed in 2017.05" +config BR2_PACKAGE_KODI_RTMPDUMP + bool "kodi rtmp" + select BR2_LEGACY + select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP + help + Internal rtmp support was moved to addon kodi-inputstream-rtmp + config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN bool "kodi-visualisation-fountain has been removed" select BR2_LEGACY diff --git a/package/kodi/Config.in b/package/kodi/Config.in index 85dba3489..95f9f65ea 100644 --- a/package/kodi/Config.in +++ b/package/kodi/Config.in @@ -179,13 +179,6 @@ config BR2_PACKAGE_KODI_NONFREE Enable components with non-free licenses. This option currently only controls support for RAR archives. -config BR2_PACKAGE_KODI_RTMPDUMP - bool "rtmp" - select BR2_PACKAGE_RTMPDUMP - help - Enable RTMP input support. - Select this if you want to play back rtmp stream. - config BR2_PACKAGE_KODI_LIBSHAIRPLAY bool "shairport" select BR2_PACKAGE_LIBSHAIRPLAY diff --git a/package/kodi/kodi.mk b/package/kodi/kodi.mk index 357776779..dbe2fcd62 100644 --- a/package/kodi/kodi.mk +++ b/package/kodi/kodi.mk @@ -245,13 +245,6 @@ else KODI_CONF_OPTS += -DENABLE_NFS=OFF endif -ifeq ($(BR2_PACKAGE_KODI_RTMPDUMP),y) -KODI_DEPENDENCIES += rtmpdump -KODI_CONF_OPTS += --enable-rtmp -else -KODI_CONF_OPTS += --disable-rtmp -endif - ifeq ($(BR2_PACKAGE_KODI_LIBBLURAY),y) KODI_DEPENDENCIES += libbluray KODI_CONF_OPTS += -DENABLE_BLURAY=ON