From patchwork Mon Sep 21 12:29:35 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vicente Olivert Riera X-Patchwork-Id: 520274 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]) by ozlabs.org (Postfix) with ESMTP id 747801401AD for ; Mon, 21 Sep 2015 22:29:49 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 769A133226; Mon, 21 Sep 2015 12:29:48 +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 mXDg8DtEiJHW; Mon, 21 Sep 2015 12:29:45 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id A697F331FB; Mon, 21 Sep 2015 12:29:45 +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 669881CEE16 for ; Mon, 21 Sep 2015 12:29:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 61CEF91BF2 for ; Mon, 21 Sep 2015 12:29:44 +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 6d-tie8riTxR for ; Mon, 21 Sep 2015 12:29:43 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by whitealder.osuosl.org (Postfix) with ESMTP id 8349B91BF7 for ; Mon, 21 Sep 2015 12:29:43 +0000 (UTC) Received: from KLMAIL01.kl.imgtec.org (unknown [192.168.5.35]) by Websense Email Security Gateway with ESMTPS id 067719C17C07 for ; Mon, 21 Sep 2015 13:29:39 +0100 (IST) Received: from LEMAIL01.le.imgtec.org (192.168.152.62) by KLMAIL01.kl.imgtec.org (192.168.5.35) with Microsoft SMTP Server (TLS) id 14.3.195.1; Mon, 21 Sep 2015 13:29:41 +0100 Received: from localhost.localdomain (192.168.154.63) by LEMAIL01.le.imgtec.org (192.168.152.62) with Microsoft SMTP Server (TLS) id 14.3.210.2; Mon, 21 Sep 2015 13:29:41 +0100 From: Vicente Olivert Riera To: Date: Mon, 21 Sep 2015 13:29:35 +0100 Message-ID: <1442838575-11855-1-git-send-email-Vincent.Riera@imgtec.com> X-Mailer: git-send-email 1.7.1 MIME-Version: 1.0 X-Originating-IP: [192.168.154.63] Subject: [Buildroot] [PATCH] shairport-sync: fix non-existent meta_dir member of shairport_cfg struct 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: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" shairport-sync tries to access to a non-existent member called "meta_dir" of a "shairport_cfg" struct: [snip] if (config.meta_dir) [snip] That struct doesn't have that member so it causes a build failure like this one: mdns_tinysvcmdns.c: In function 'mdns_tinysvcmdns_register': mdns_tinysvcmdns.c:121:13: error: 'shairport_cfg' has no member named 'meta_dir' if (config.meta_dir) This issue has been reported and fixed upstream: https://github.com/mikebrady/shairport-sync/issues/128#issuecomment-141947175 Fixes: http://autobuild.buildroot.net/results/89d/89d22ba2d41e05b407cde04c7e57510b36973ce9/ Signed-off-by: Vicente Olivert Riera --- package/shairport-sync/shairport-sync.mk | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/package/shairport-sync/shairport-sync.mk b/package/shairport-sync/shairport-sync.mk index dc36c0e..36d5b82 100644 --- a/package/shairport-sync/shairport-sync.mk +++ b/package/shairport-sync/shairport-sync.mk @@ -10,6 +10,7 @@ SHAIRPORT_SYNC_SITE = $(call github,mikebrady,shairport-sync,$(SHAIRPORT_SYNC_VE SHAIRPORT_SYNC_LICENSE = MIT, BSD-3c SHAIRPORT_SYNC_LICENSE_FILES = LICENSES SHAIRPORT_SYNC_DEPENDENCIES = alsa-lib libconfig libdaemon popt host-pkgconf +SHAIRPORT_SYNC_PATCH = https://github.com/mikebrady/shairport-sync/commit/6ae067af1f695e615415cde69a506ad330dbc45b.patch # Touching configure.ac with the patches SHAIRPORT_SYNC_AUTORECONF = YES