From patchwork Sat Sep 8 12:28:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [03/13] perl: add DB_File Date: Sat, 08 Sep 2012 02:28:35 -0000 From: Francois Perrad X-Patchwork-Id: 182557 Message-Id: <1347107325-4163-3-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 | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/package/perl/Config.in b/package/perl/Config.in index 1f044eb..9df487a 100644 --- a/package/perl/Config.in +++ b/package/perl/Config.in @@ -20,4 +20,10 @@ config BR2_PACKAGE_PERL_ONLY_MINIPERL Install only miniperl (without dynamic module loader) Usually used to bootstrap a full Perl (@INC contains only .). +config BR2_PACKAGE_PERL_DB_FILE + bool "DB_File" + select BR2_PACKAGE_BERKELEYDB + help + Build the DB_File module. + endif diff --git a/package/perl/perl.mk b/package/perl/perl.mk index b00116f..2225f0c 100644 --- a/package/perl/perl.mk +++ b/package/perl/perl.mk @@ -12,6 +12,11 @@ PERL_LICENSE = Artistic PERL_LICENSE_FILES = Artistic PERL_INSTALL_STAGING = YES +ifdef BR2_PACKAGE_PERL_DB_FILE + PERL_DEPENDENCIES += berkeleydb +endif +HOST_PERL_DEPENDENCIES = + ifeq ($(shell expr $(PERL_VERSION_MAJOR) % 2), 1) PERL_USE_DEVEL=-Dusedevel endif