CaboCha-0.43のコンパイル&インストール

YamChaと同じやり方でshared library化します。

/usr/autotool/devel/bin/aclocal
/usr/autotool/devel/bin/automake --add-missing
/usr/autotool/devel/bin/autoconf
/usr/autotool/devel/bin/libtoolize --force
  • Makefile.inのLDFLAGSに-no-undefinedを付け加える
LDFLAGS = -no-undefined @LDFLAGS@
  • 呪文を唱えてconfigure, make。よく考えたらChaSenのライブラリはstaticにリンクしているので(こうしないと動かない)、ChaSenはshared library化する必要なかったのかな・・・。わはは。
/usr/autotool/devel/bin/automake
/usr/autotool/devel/bin/autoconf
./configure --enable-chasen-static
make
make check
make install
make clean