lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Config.in (823B)


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