From patchwork Fri Sep 21 21:39:00 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Francois Perrad X-Patchwork-Id: 185939 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 024352C0084 for ; Sat, 22 Sep 2012 07:39:56 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 5E75DA0577; Fri, 21 Sep 2012 21:39:56 +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 ApDCwyxWbkTR; Fri, 21 Sep 2012 21:39:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id BA581A055E; Fri, 21 Sep 2012 21:39:45 +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 CFAE98F74A for ; Fri, 21 Sep 2012 21:39:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 214D48CE80 for ; Fri, 21 Sep 2012 21:39:38 +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 47VQdv-BYWZ8 for ; Fri, 21 Sep 2012 21:39:37 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by whitealder.osuosl.org (Postfix) with ESMTPS id DFD148A9E6 for ; Fri, 21 Sep 2012 21:39:36 +0000 (UTC) Received: by wibhm2 with SMTP id hm2so1969722wib.10 for ; Fri, 21 Sep 2012 14:39:35 -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=R7JjgWN1eCUyvOOvnr0Udx6p9aCUaehQ0sjYYAb0gRg=; b=lUPiIfdiGPWE3GsHdtBbDr4D/KUr1s/DB5Nq4wW+p7kWWcUpBnEHxv2KgG9JhoZAWq mv5G62szXjzeAnC/qPAq9+yxe9bq26SoSpfhn/Gy9ZsAKRxxCaP+qVbLDWzQotwCmE6b l7pCkC53EnwdIEHywCBmguw38KYfqbYLK5z3xiq+6eWzv1mw68U+cfUJwn4Pmetas/Pi wHTzEaHAOW09CLNNyMiJFASDpQBnqFFffBP/nY1TnlcXCkWTf4I7b/ZEcHVooCI41AFD C6yBlV8HLkrK8e4qZncnZ+s4FqJW2HfFtzc4BlKPufuybmdPP6exwBqGGtM4tiISLCvS MH3g== Received: by 10.180.77.34 with SMTP id p2mr431534wiw.0.1348263575115; Fri, 21 Sep 2012 14:39:35 -0700 (PDT) Received: from xubuntu-12.04 (15.119.86.79.rev.sfr.net. [79.86.119.15]) by mx.google.com with ESMTPS id w7sm109925wiz.0.2012.09.21.14.39.33 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 21 Sep 2012 14:39:34 -0700 (PDT) From: Francois Perrad To: buildroot@busybox.net Date: Fri, 21 Sep 2012 23:39:00 +0200 Message-Id: <1348263548-12975-5-git-send-email-francois.perrad@gadz.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1348263548-12975-1-git-send-email-francois.perrad@gadz.org> References: <1348263548-12975-1-git-send-email-francois.perrad@gadz.org> Subject: [Buildroot] [PATCH v7 05/13] 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 2e627da..f616485 100644 --- a/package/perl/Config.in +++ b/package/perl/Config.in @@ -25,4 +25,10 @@ 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 diff --git a/package/perl/perl.mk b/package/perl/perl.mk index aca5fb0..4590c7a 100644 --- a/package/perl/perl.mk +++ b/package/perl/perl.mk @@ -15,6 +15,9 @@ PERL_INSTALL_STAGING = YES ifeq ($(BR2_PACKAGE_PERL_DB_FILE),y) PERL_DEPENDENCIES += berkeleydb endif +ifeq ($(BR2_PACKAGE_PERL_DB_FILE),y) + PERL_DEPENDENCIES += gdbm +endif HOST_PERL_DEPENDENCIES = ifeq ($(shell expr $(PERL_VERSION_MAJOR) % 2), 1)