2010/4/18 Nobutarou <[email protected]>: > sh -x ./autogen.sh > log 2>&1 > した結果です. > > ++ intltoolize --version > ++ sed -e 's/.* \([0-9]*\.[0-9]*\.[0-9]*\)/\1/' > + INTLTOOL_VERSION=0.40.6 > ++ echo 0.40.6 > ++ cut -d . -f 1 > + INTLTOOL_VERSION_MAJOR=0 > ++ echo 0.40.6 > ++ cut -d . -f 2 > + INTLTOOL_VERSION_MINOR=40 > ++ echo 0.40.6 > ++ cut -d . -f 3 > + INTLTOOL_VERSION_MICRO=6 > + aclocal -I m4 > + fix_aclocal_m4 > + test 0 -eq 0 -a 40 -eq 40 -a 6 -gt 3 -o 0 -eq 0 -a 40 -gt 40 > + echo 'modify aclocal.m4' > modify aclocal.m4 > + ed aclocal.m4 > 332252 > ?
なるほど。aclocal.m4 のサイズがかなり大きいですね。ここで呼び出される aclocal は正しく automake 1.11.1 の物が使われているでしょうか? 手元の環境では、aclocal -I m4 で作成される aclocal.m4 のサイズは以下のとおりでした。 $ wc aclocal.m4 1579 7197 60059 aclocal.m4 また、動作に大きな支障は出ませんので、autogen.sh の fix_aclocal_m4 の呼び出しを削って動くようでしたら、それでもいいかもしれません。 -- Etsushi Kato -- Google Groups "uim-ja" group [email protected] http://groups.google.com/group/uim-ja/about
