summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-09-08 20:01:07 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-11 18:41:37 +0100
commit543e83e85269f35612867957a445319546f3c73a (patch)
treec54fa42c3c27b23cedfe01e49ce9fc0b11a88429 /meta/recipes-devtools/perl
parentde8b04c9d3c0cf79bb59b315574f4461ee6eed43 (diff)
downloadpoky-543e83e85269f35612867957a445319546f3c73a.tar.gz
perl: do not build berkeley db module by default
Bdb is unmaintained and altogether obsolete, the less dependencies we have on it, the better. This leaves only apt (specifically, apt-ftparchive) in core as a bdb consumer, sadly it has a hard dependency that isn't easy to patch out. Maybe apt upstream will get to it at some point. (From OE-Core rev: 0d9ca78951cfe98bfaaf426572c42dbbb6169cd6) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl')
-rw-r--r--meta/recipes-devtools/perl/perl_5.34.0.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/perl/perl_5.34.0.bb b/meta/recipes-devtools/perl/perl_5.34.0.bb
index 175db4ee31..89de558979 100644
--- a/meta/recipes-devtools/perl/perl_5.34.0.bb
+++ b/meta/recipes-devtools/perl/perl_5.34.0.bb
@@ -36,7 +36,7 @@ DEPENDS += "perlcross-native zlib virtual/crypt"
36 36
37PERL_LIB_VER = "${@'.'.join(d.getVar('PV').split('.')[0:2])}.0" 37PERL_LIB_VER = "${@'.'.join(d.getVar('PV').split('.')[0:2])}.0"
38 38
39PACKAGECONFIG ??= "bdb gdbm" 39PACKAGECONFIG ??= "gdbm"
40PACKAGECONFIG[bdb] = ",-Ui_db,db" 40PACKAGECONFIG[bdb] = ",-Ui_db,db"
41PACKAGECONFIG[gdbm] = ",-Ui_gdbm,gdbm" 41PACKAGECONFIG[gdbm] = ",-Ui_gdbm,gdbm"
42 42