You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
823 B

  1. menu "Configuration"
  2. depends on PACKAGE_perl
  3. config PERL_THREADS
  4. bool "Enable threading support"
  5. default y if (mips || mipsel || i386 || i686 || x86_64 || armeb || arm)
  6. default n
  7. config PERL_TESTS
  8. bool "Include perl tests"
  9. default n
  10. help
  11. Include test suites for all perl packages.
  12. This will increase the size of perl and related packages
  13. considerably.
  14. Test support is still in development. Some tests will fail,
  15. others are just missing completely.
  16. config PERL_NOCOMMENT
  17. bool "Strip comments and pod sections from modules"
  18. default y
  19. help
  20. Remove comments and pod sections for all perl packages.
  21. This will descrease the size of perl libraries moderately.
  22. Stripping occasionally gets confused and mangles valid code,
  23. so disable this option if you're not pressed for space.
  24. endmenu