hush all warnings in normalize code
[webpac2] / Makefile.PL
index 11d0acc..488e67f 100644 (file)
@@ -22,7 +22,7 @@ requires      'Encode';
 requires       'LWP';
 requires       'File::Path';
 requires       'Biblio::Isis' => '0.24';
-requires       'MARC::Fast' => '0.09';
+requires       'MARC::Fast' => '0.11';
 requires       'List::Util';
 requires       'MARC::Record' => '2.0';
 requires       'Data::Dump';
@@ -34,7 +34,6 @@ requires      'Pod::Usage';
 requires       'Class::Accessor';
 requires       'JSON';
 requires       'File::Spec';
-requires       'Sort::External';
 
 features(
        'WebPAC::Input::XML' => [
@@ -50,6 +49,14 @@ features(
                -default => 1,
                'Spreadsheet::ParseExcel',
        ],
+       'WebPAC::Input::CSV' => [
+               -default => 1,
+               'Text::CSV',
+       ],
+       'WebPAC::Input::DBF' => [
+               -default => 0,
+               'XBase',
+       ],
        'WebPAC::Output::Estraier' => [
                -default => 0,
                'Search::Estraier' => 0.06,
@@ -63,13 +70,38 @@ features(
                'Spreadsheet::WriteExcel' => 2.14,
        ],
        'WebPAC::Output::KinoSearch' => [
-               -default => 1,
+               -default => 0,
                'KinoSearch::Simple',
        ],
+       'WebPAC::Output::SWISH' => [
+               -default => 1,
+               'SWISH::API',
+       ],
+       'WebPAC::Output::CouchDB' => [
+               -default => 0,
+               'Net::CouchDb',
+       ],
+       'WebPAC::Output::Sorted' => [
+               -default => 0,
+               'Sort::External',
+       ],
+       'WebPAC::Output::Riak' => [
+               -default => 0,
+               'Net::Riak',
+       ],
        'Parallel execution (probably broken)' => [
                -default => 0,
                'Proc::Queue',
        ],
+       'CGI web interface' => [
+               -default => 0,
+               'Data::Page',
+               'CGI',
+               'CGI::Carp',
+               'SWISH::API',
+               'Text::Unaccent::PurePerl',
+               'HTML::FillInForm::Lite',
+       ],
 );
 
 build_requires 'Test::More';