From patchwork Sat Oct 6 13:53:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Francois Perrad X-Patchwork-Id: 189705 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 92EF72C020B for ; Sat, 6 Oct 2012 23:55:02 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 3E329A028F; Sat, 6 Oct 2012 13:55: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 2QMlG1rDRYbs; Sat, 6 Oct 2012 13:54:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 49E99A035C; Sat, 6 Oct 2012 13:54:19 +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 577BC8F74B for ; Sat, 6 Oct 2012 13:54:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D674980819 for ; Sat, 6 Oct 2012 13:54:11 +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 PCimPwSejPOo for ; Sat, 6 Oct 2012 13:54:10 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f53.google.com (mail-wg0-f53.google.com [74.125.82.53]) by whitealder.osuosl.org (Postfix) with ESMTPS id 9941586E82 for ; Sat, 6 Oct 2012 13:54:10 +0000 (UTC) Received: by mail-wg0-f53.google.com with SMTP id dr1so1706294wgb.10 for ; Sat, 06 Oct 2012 06:54:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=6CgSMB2L/IOH91OfeNp957T7o1hOIqLsjyfDKrSQTJo=; b=Dq1U+l04vfZRQda3eJ9JdUgdWLnUAMxIa8aGTohSr8UTMk8ERqcN2T0CoiGvFHsYgh wHgbuDTYVOyZ2XTTS9nIfx0fA7o9OHOKyMHioUw+J2l1cKv0kHrBH4dN5lQ0oJlWRPiv UOzM3dghlBj7cxqejQh3EqA88J8RlFqclU/J3RqeE/mESKTLT1T9HBq2yZAGLvenXx3o VNt3rHoX7eMw+ysBETGOeLh+1sf2etcXcASb1TURyhGy4yYUqje/XzVMdUuST0WHJ00G Q43+PWu3Eb3ZGP14BhQpxuM4YoPKQa4qCL94A9YlB6eiLqTuZBoAAb2kA9yera7TdSXM dz2w== Received: by 10.180.106.130 with SMTP id gu2mr9580729wib.20.1349531650272; Sat, 06 Oct 2012 06:54:10 -0700 (PDT) Received: from xubuntu-12.04 (95.151.93.79.rev.sfr.net. [79.93.151.95]) by mx.google.com with ESMTPS id cu1sm8327350wib.6.2012.10.06.06.54.08 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 06 Oct 2012 06:54:09 -0700 (PDT) From: Francois Perrad To: buildroot@busybox.net Date: Sat, 6 Oct 2012 15:53:48 +0200 Message-Id: <1349531633-26717-5-git-send-email-francois.perrad@gadz.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1349531633-26717-1-git-send-email-francois.perrad@gadz.org> References: <1349531633-26717-1-git-send-email-francois.perrad@gadz.org> Subject: [Buildroot] [PATCH v9 05/10] perl: add GDBM_File 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 Signed-off-by: Francois Perrad --- package/perl/Config.in | 6 ++++++ package/perl/perl.mk | 3 +++ 2 files changed, 9 insertions(+) diff --git a/package/perl/Config.in b/package/perl/Config.in index 9a13223..6369243 100644 --- a/package/perl/Config.in +++ b/package/perl/Config.in @@ -23,6 +23,12 @@ config BR2_PACKAGE_PERL_DB_FILE help Build the DB_File module. +config BR2_PACKAGE_PERL_GDBM_FILE + bool "GDBM_File" + select BR2_PACKAGE_GDBM + help + Build the GDBM_File module. + endif comment "perl requires an architecture supported by qemu" diff --git a/package/perl/perl.mk b/package/perl/perl.mk index fbaba54..0f12044 100644 --- a/package/perl/perl.mk +++ b/package/perl/perl.mk @@ -16,6 +16,9 @@ PERL_DEPENDENCIES = host-qemu ifeq ($(BR2_PACKAGE_BERKELEYDB),y) PERL_DEPENDENCIES += berkeleydb endif +ifeq ($(BR2_PACKAGE_GDBM),y) + PERL_DEPENDENCIES += gdbm +endif PERL_CONF_OPT = -des \ -Dusecrosscompile \