From patchwork Fri Sep 21 21:39:00 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v7,05/13] perl: add GDBM_File Date: Fri, 21 Sep 2012 11:39:00 -0000 From: Francois Perrad X-Patchwork-Id: 185939 Message-Id: <1348263548-12975-5-git-send-email-francois.perrad@gadz.org> To: buildroot@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)