From patchwork Wed Mar 6 06:31:08 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gilles Talis X-Patchwork-Id: 225370 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id CAB4F2C03B6 for ; Wed, 6 Mar 2013 17:31:29 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C449B8D083; Wed, 6 Mar 2013 06:31:24 +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 UWjlHr68dMpM; Wed, 6 Mar 2013 06:31:18 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 774918D010; Wed, 6 Mar 2013 06:31:17 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id A09398F783 for ; Wed, 6 Mar 2013 06:31:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 062738CFD4 for ; Wed, 6 Mar 2013 06:31:16 +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 WEhEsmIfscAb for ; Wed, 6 Mar 2013 06:31:15 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pb0-f49.google.com (mail-pb0-f49.google.com [209.85.160.49]) by whitealder.osuosl.org (Postfix) with ESMTPS id 19E878CFF9 for ; Wed, 6 Mar 2013 06:31:15 +0000 (UTC) Received: by mail-pb0-f49.google.com with SMTP id xa12so5510275pbc.22 for ; Tue, 05 Mar 2013 22:31:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=eEEOqaChsYrPlc7YrQXhLWNPRFpfbTJej0vMRKWPTrM=; b=NiWNS4BX40EgE7CVneeLbBPWU9xvOIHxHAcr8wUEzJxXpUtlJpa6SNlo/VJy6JESf2 n4IijYu1tbbMbM1oulDmrRXNG9lhIR82sr/1kv2SoCs0YIt+GSevkzqB2IV3ZFzV1j7g G6JAkOHqmn9pUy+bhkGO0qkQFyl2yvGMiEdskjGJr1/reJX8cPTOFYLMlQZsJbGflMnE Pp23Hl40l8NdAqt7NuvfOcE0wd2JFqyu3MfRBA9W2U4mJY8p45NMkCu/f/hwjFz/4qzt gp01Zzx0HYRKuHTESpc9Hd8PJ0FcilMe6gn0Q0ufrZDMRMvYf8M6Oq2/glr0wAJDBZnY sR3Q== X-Received: by 10.68.48.165 with SMTP id m5mr43304652pbn.40.1362551474471; Tue, 05 Mar 2013 22:31:14 -0800 (PST) Received: from localhost.localdomain (c-69-181-251-46.hsd1.ca.comcast.net. [69.181.251.46]) by mx.google.com with ESMTPS id ab1sm29935474pbd.37.2013.03.05.22.31.12 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Mar 2013 22:31:13 -0800 (PST) From: Gilles Talis To: buildroot@busybox.net Date: Tue, 5 Mar 2013 22:31:08 -0800 Message-Id: <1362551468-5510-1-git-send-email-gilles.talis@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: Subject: [Buildroot] [PATCH] json-c: Add json_object_iterator.h to installed headers X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net json_object_iterator.h is not installed in staging directory. This leads to an error during pulseaudio build process: fatal error: json_object_iterator.h: No such file or directory Fixes autobuild failures like: http://autobuild.buildroot.org/results/079f9265cd768f88ad57f6f7b794641c845f3079 Signed-off-by: Gilles Talis Tested-by: Thomas Petazzoni --- ...n-c-add-missing-file-to-installed-headers.patch | 43 ++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 package/json-c/json-c-add-missing-file-to-installed-headers.patch diff --git a/package/json-c/json-c-add-missing-file-to-installed-headers.patch b/package/json-c/json-c-add-missing-file-to-installed-headers.patch new file mode 100644 index 0000000..12ef855 --- /dev/null +++ b/package/json-c/json-c-add-missing-file-to-installed-headers.patch @@ -0,0 +1,43 @@ +From 2ab6524ca0cfaab7feb42f7c328db8fca7b111fc Mon Sep 17 00:00:00 2001 +From: Gilles Talis +Date: Tue, 5 Mar 2013 21:59:11 -0800 +Subject: [PATCH] Add json_object_iterator.h to installed headers + +Backported from: 4154c55edae6f6b34d6ef4fcc331055fdf8e1a23 + +In addition to original patch, applied the same change to Makefile.in +to avoid having the package to be autoreconfigured. + +Signed-off-by: Gilles Talis +--- + Makefile.am | 1 + + Makefile.in | 1 + + 2 files changed, 2 insertions(+) + +diff --git a/Makefile.am b/Makefile.am +index d4a7bbb..8f09ca8 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -17,6 +17,7 @@ libjsoninclude_HEADERS = \ + json_config.h \ + json_inttypes.h \ + json_object.h \ ++ json_object_iterator.h \ + json_object_private.h \ + json_tokener.h \ + json_util.h \ +diff --git a/Makefile.in b/Makefile.in +index c06db3e..9d924cd 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -278,6 +278,7 @@ libjsoninclude_HEADERS = \ + json_config.h \ + json_inttypes.h \ + json_object.h \ ++ json_object_iterator.h \ + json_object_private.h \ + json_tokener.h \ + json_util.h \ +-- +1.7.10.4 +