blob: 6cb89f02937f457c20bfbd218bdd5636c8f850ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
config BR2_PACKAGE_PERL
bool "perl"
depends on !BR2_avr32
depends on !BR2_bfin
depends on !BR2_sh2
depends on !BR2_sh2a
depends on !BR2_sh3
depends on !BR2_sh3eb
depends on !BR2_sh64
help
Larry Wall's Practical Extraction and Report Language
An interpreted scripting language, known among some as "Unix's Swiss
Army Chainsaw".
http://www.perl.org/
if BR2_PACKAGE_PERL
config BR2_PACKAGE_PERL_DB_FILE
bool "DB_File"
select BR2_PACKAGE_BERKELEYDB
help
Build the DB_File module.
endif
comment "perl requires an architecture supported by qemu"
depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64
|