[dw-free] Tweak the config checker: dev -> deb (typo), and make these three modules optional, becaus
[commit: http://hg.dwscoalition.org/dw-free/rev/6d883d01c722]
Tweak the config checker: dev -> deb (typo), and make these three modules
optional, because they're only needed for Perlbal not for general site use.
Files modified:
Tweak the config checker: dev -> deb (typo), and make these three modules
optional, because they're only needed for Perlbal not for general site use.
Files modified:
- bin/checkconfig.pl
-------------------------------------------------------------------------------- diff -r 70098be85f90 -r 6d883d01c722 bin/checkconfig.pl --- a/bin/checkconfig.pl Fri Nov 11 15:44:56 2011 +0800 +++ b/bin/checkconfig.pl Fri Nov 11 16:01:03 2011 +0800 @@ -224,9 +224,18 @@ }, "Hash::MultiValue" => {}, "DateTime::TimeZone" => { 'deb' => "libdatetime-timezone-perl", }, - "Sys::Syscall" => { dev => 'libsys-syscall-perl' }, - "Danga::Socket" => { dev => 'libdanga-socket-perl' }, - "IO::AIO" => { dev => 'libio-aoi-perl' }, + "Sys::Syscal" => { + deb => 'libsys-syscall-perl', + opt => 'Required for Perlbal', + }, + "Danga::Socket" => { + deb => 'libdanga-socket-perl', + opt => 'Required for Perlbal', + }, + "IO::AIO" => { + deb => 'libio-aoi-perl', + opt => 'Required for Perlbal', + }, ); --------------------------------------------------------------------------------