diff options
author | ot <ot@localhost> | 2007-07-10 03:30:14 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-07-10 03:30:14 +0000 |
commit | 5f02b9d83527845988938ace8161c62f8953c03e (patch) | |
tree | 590dd278c3f7ee768dabe7d58d40d1e83e1873e7 /misc/bundle | |
parent | 0c4abf455ae1174c727b723fe3b3d530a9d1498a (diff) | |
download | markup-validator-5f02b9d83527845988938ace8161c62f8953c03e.zip markup-validator-5f02b9d83527845988938ace8161c62f8953c03e.tar.gz markup-validator-5f02b9d83527845988938ace8161c62f8953c03e.tar.bz2 |
requiring extra perl libs for CJK character encodings, and documenting the new requirements
Diffstat (limited to 'misc/bundle')
-rw-r--r-- | misc/bundle/META.yml | 5 | ||||
-rw-r--r-- | misc/bundle/Makefile.PL | 4 | ||||
-rw-r--r-- | misc/bundle/lib/Bundle/W3C/Validator.pm | 4 |
3 files changed, 12 insertions, 1 deletions
diff --git a/misc/bundle/META.yml b/misc/bundle/META.yml index 3a28c16..33b6f8b 100644 --- a/misc/bundle/META.yml +++ b/misc/bundle/META.yml @@ -14,6 +14,9 @@ requires: Set::IntSpan: 0 Text::Iconv: 0 URI: 0 - + Encode: 0 + Encode::HanExtra: 0 + Encode::JIS2K: 0 + File::Spec: 0 distribution_type: module generated_by: ExtUtils::MakeMaker version 6.17 diff --git a/misc/bundle/Makefile.PL b/misc/bundle/Makefile.PL index 92e53e8..208da38 100644 --- a/misc/bundle/Makefile.PL +++ b/misc/bundle/Makefile.PL @@ -17,6 +17,10 @@ WriteMakefile( SGML::Parser::OpenSP => 0 URI => 0, XML::LibXML => 0, + Encode => 0, + Encode::HanExtra => 0, + Encode::JIS2K => 0, + File::Spec => 0 }, dist => { TARFLAGS => '--owner=0 --group=0 -cvf' }, clean => { FILES => 'ChangeLog.bak' }, diff --git a/misc/bundle/lib/Bundle/W3C/Validator.pm b/misc/bundle/lib/Bundle/W3C/Validator.pm index c38bedf..8b2ff2f 100644 --- a/misc/bundle/lib/Bundle/W3C/Validator.pm +++ b/misc/bundle/lib/Bundle/W3C/Validator.pm @@ -26,6 +26,10 @@ C<perl -MCPAN -e "install Bundle::W3C::Validator"> HTML::Parser 3.25 HTML::Template 2.6 LWP::UserAgent 1.90 + Encode + Encode::HanExtra + Encode::JIS2K + File::Spec Net::IP SGML::Parser::OpenSP URI |