Certain strings are misinterpreted as comments by perlmod.mk and removed when they shouldn't be (in particular, perl-cgi). Enable this whenever you have sufficient flash space. Globally, CONFIG_PERL_NOCOMMENT=y (default) causes comments to be stripped as before. However, a package (like perl-cgi) can override this with PKG_LEAVE_COMMENTS=1. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
31 lines
823 B
Text
31 lines
823 B
Text
menu "Configuration"
|
|
depends on PACKAGE_perl
|
|
|
|
config PERL_THREADS
|
|
bool "Enable threading support"
|
|
default y if (mips || mipsel || i386 || i686 || x86_64 || armeb || arm)
|
|
default n
|
|
|
|
config PERL_TESTS
|
|
bool "Include perl tests"
|
|
default n
|
|
help
|
|
Include test suites for all perl packages.
|
|
|
|
This will increase the size of perl and related packages
|
|
considerably.
|
|
Test support is still in development. Some tests will fail,
|
|
others are just missing completely.
|
|
|
|
config PERL_NOCOMMENT
|
|
bool "Strip comments and pod sections from modules"
|
|
default y
|
|
help
|
|
Remove comments and pod sections for all perl packages.
|
|
|
|
This will descrease the size of perl libraries moderately.
|
|
|
|
Stripping occasionally gets confused and mangles valid code,
|
|
so disable this option if you're not pressed for space.
|
|
|
|
endmenu
|