From patchwork Wed Aug 5 20:48:25 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 504202 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 8538914090B for ; Thu, 6 Aug 2015 06:48:39 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=WnXDUGHL; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 4C65F33932; Wed, 5 Aug 2015 20:48:37 +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 P8h31ZFbm+Y5; Wed, 5 Aug 2015 20:48:35 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id C9D73338EB; Wed, 5 Aug 2015 20:48:34 +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 297AD1C211D for ; Wed, 5 Aug 2015 20:48:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 253BAA43D7 for ; Wed, 5 Aug 2015 20:48:34 +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 A92yA9edSeyD for ; Wed, 5 Aug 2015 20:48:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 0F416A43DF for ; Wed, 5 Aug 2015 20:48:33 +0000 (UTC) Received: by wibhh20 with SMTP id hh20so40959728wib.0 for ; Wed, 05 Aug 2015 13:48:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id; bh=vgnxlaNVi1Agp813zIYI6ONjXqal0/HBppqEU0Ip6P4=; b=WnXDUGHLhn2ec45UBaPHSoWJaVrpxp2WhSqOyE5Z4EP3azmd373W8Zvk/TQMRZdogF rTv6smWDRwQk4GpibHTR0Wu4td5g+m9bPeCwfcSMK+1XMJlZZLdJO84qHdk7Sug1dgfZ 9r80ZVDGS33xKYKV6ctabq5VE/lgwNN+ohf5VynK8E8nK5aSzfCMBRxXpjnt3zVGV38P fjlGG4tCgDVpfma73jHdoF0aqyzdrdPRcFj0wqFTML9g4zTjjQLb7zJckeqmIPa9MG40 x8PXS3URak7Hl09LGGdfMcrirEL3CuFXp3VnN8bsw/IRNAYe7PwP1xw7jIkzXj/sVCWU P5RA== X-Received: by 10.180.24.198 with SMTP id w6mr2146308wif.49.1438807711754; Wed, 05 Aug 2015 13:48:31 -0700 (PDT) Received: from gourin.bzh.lan (ns304657.ip-46-105-103.eu. [46.105.103.66]) by smtp.gmail.com with ESMTPSA id gw7sm9366535wib.15.2015.08.05.13.48.30 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 05 Aug 2015 13:48:31 -0700 (PDT) From: "Yann E. MORIN" To: buildroot@buildroot.org Date: Wed, 5 Aug 2015 22:48:25 +0200 Message-Id: <1438807705-7170-1-git-send-email-yann.morin.1998@free.fr> X-Mailer: git-send-email 1.9.1 Cc: "Yann E. MORIN" Subject: [Buildroot] [PATCH] [autobuild] package/cramfs: fix missing type 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" loff_t is guarded by _GNU_SOURCE. although already properly defined in cramfsck, it was not defined in mkcramfs. Fixes; http://autobuild.buildroot.org/results/57d/57de9e838fa953e2fb5e358cd535603fb249b7d2/ http://autobuild.buildroot.org/results/e02/e023014934bf291add9d9dfdfc005bfec34dc1ff/ [...] Note: since cramfs was last released in 2002-02-24, we don't stand a chance to get this merged any time soon... :-( Signed-off-by: "Yann E. MORIN" --- package/cramfs/0003-fix-missing-types.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 package/cramfs/0003-fix-missing-types.patch diff --git a/package/cramfs/0003-fix-missing-types.patch b/package/cramfs/0003-fix-missing-types.patch new file mode 100644 index 0000000..8961100 --- /dev/null +++ b/package/cramfs/0003-fix-missing-types.patch @@ -0,0 +1,17 @@ +mkcramfs; loff_t is guarded by _GNU_SOURCE + +Although already properly done in cramfsck, it was missing in mkcramfs. + +Signed-off-by: "Yann E. MORIN" + +diff -durN cramfs-1.1.orig/mkcramfs.c cramfs-1.1/mkcramfs.c +--- cramfs-1.1.orig/mkcramfs.c 2015-08-05 22:31:16.830543096 +0200 ++++ cramfs-1.1/mkcramfs.c 2015-08-05 22:33:33.136289744 +0200 +@@ -22,6 +22,7 @@ + * If you change the disk format of cramfs, please update fs/cramfs/README. + */ + ++#define _GNU_SOURCE + #include + #include + #include