The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Changes for version 0.02_02

  • Fix tools/probe_mecab.pl such that it prompts the user for some required parameters when installing on Windows.
  • Try fixing Makefile.PL once again.
  • Explicitly make copies of mecab_node_t in the XS, so that you can now manipulate the nodes even *after* your instance of Text::MeCab has gone away

Changes for version 0.02_01

  • Hey, I didn't know people were going to jump on to this module, seriously...
  • Fix building when using Makefile.PL instead of Build.PL (refactor important bits to tools/probe_mecab.pl).
  • Attempt to work with MeCab < 0.90.
  • Move benchmark.pl to tools/benchmark.pl.
  • Fix problem caused by Text::MeCab->new() (no parameters).
  • Add Text::MeCab::MECAB_VERSION to display the mecab version we compiled against.
  • TODO:
  • Try to at least give out a warning when executing a code like this:
    • my $node; { my $mecab = Text::MeCab->new; $mecab->parse("......"); $mecab = undef; }
    • for(; $node; $node = $node->next) { print $node->surface, "\n"; }
    • I'm having a hard time detecting when a node is deallocated, though. we shall see.

Documentation

MeCab Node Object

Modules

Alternate Interface To libmecab