From: Tomohiro K. <ku...@de...> - 2003-03-14 17:41:44
|
久保田です。 --with-tools と --with-scrollbars ですが、これをつけて configure してコンパイルしても、mlclient, mlconfig, mlterm-menu もスクロール バーもコンパイルされません。 configure.in を見てみると、 > tools="mlclient,mlconfig,mlterm-menu" > AC_ARG_WITH(tools, > [ --with-tools[=ARG] external tools [mlclient,mlconfig,mlterm-menu]], > [ > # If given --without-tools or --with-tools with no args. > if test "${with_tools}" = "no" -o "${with_tools}" = "yes" ; then > tools="" > else > tools=${with_tools} > fi > ]) とありますが、せっかく引用部分の1行目で $tools を設定しているのに、 "${with_tools}" = "yes" のときにも tools="" としてしまっているのが 原因だと思います。同様のことが、--with-scrollbars についても言えます。 (つまり、この if 文だとどう転んでも元の $tools の内容は生き残らない)。 引用部分の1行目で $tools を設定していることから、これは仕様ではなく バグだと判断し、修正を cvs commit しました。 --- 久保田智広 Tomohiro KUBOTA <ku...@de...> http://www.debian.or.jp/~kubota/ |