From patchwork Wed Oct 10 15:06:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v10,05/10] perl: add GDBM_File X-Patchwork-Submitter: Francois Perrad X-Patchwork-Id: 190677 Message-Id: <1349881591-7062-5-git-send-email-francois.perrad@gadz.org> To: buildroot@busybox.net Date: Wed, 10 Oct 2012 17:06:26 +0200 From: Francois Perrad List-Id: Discussion and development of buildroot 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 6cb89f0..98b41da 100644 --- a/package/perl/Config.in +++ b/package/perl/Config.in @@ -22,6 +22,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 186158b..56abbc1 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 \