Update of /cvsroot/popfile/engine
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17692
Modified Files:
make_packing_list.pl
Log Message:
Avoid Services::IMAP is included in popfile.pck. Added MeCab optional informatin and fixed regexp
Index: make_packing_list.pl
===================================================================
RCS file: /cvsroot/popfile/engine/make_packing_list.pl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** make_packing_list.pl 6 Feb 2006 15:09:54 -0000 1.5
--- make_packing_list.pl 6 Apr 2008 15:41:46 -0000 1.6
***************
*** 43,46 ****
--- 43,47 ----
'IO::Socket::SSL' => 'SSL Connection Support',
'IO::Socket::Socks' => 'Socks Proxy Support',
+ 'MeCab' => $japanese,
'Text::Kakasi' => $japanese,
'XMLRPC::Transport::HTTP' => 'XML-RPC Server Support' );
***************
*** 57,61 ****
open PACKAGE, ">$output";
foreach my $module (sort keys %modules) {
! if ( $module !~ /^Classifier|POPFile|Proxy|UI/ ) {
print PACKAGE "$modules{$module}\t0.0.0\t$module\n";
}
--- 58,62 ----
open PACKAGE, ">$output";
foreach my $module (sort keys %modules) {
! if ( $module !~ /^(Classifier|POPFile|Proxy|UI|Services)/ ) {
print PACKAGE "$modules{$module}\t0.0.0\t$module\n";
}
|