0

Intel Mac OSX 10.7.4 x64 のソース コードから libming 0.4.2 をインストールしようとしています (すでに Intel Mac OSX 10.6 i386 に正常にインストールされています) が、./configure を実行しようとすると次のエラーが表示されます (両方ともおよびsudoなし)

config.status: creating util/Makefile
config.status: creating util/ming-config
config.status: creating ming.spec
config.status: creating src/ming_config.h
config.status: src/ming_config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
sed: config/ltmain.sh: No such file or directory
sed: config/ltmain.sh: No such file or directory
mv: rename libtoolT to libtool: No such file or directory
cp: libtoolT: No such file or directory
chmod: libtool: No such file or directory

もちろん、その後 make install は失敗します。:( (xcode および xcode コマンド ライン ツールは既にインストールされています)

4

2 に答える 2

2

These commands could work(step by step):

aclocal
glibtoolize --force
autoheader
autoconf
automake
./configure
make
make install 

libming 0.4.2 might have problems like that because, it stopped at RC1.(esp. for Intel Mac Refer:http://www.libming.org/Mac_OS_X_Installation)

Try installing higher versions 0.4.3 and 0.4.4.

于 2012-08-06T11:12:49.740 に答える
0

次の手順/コマンドは、Mac OSX 10.7.4 x64 で機能します。

 1. Install mac ports from http://www.macports.org/
 2. sudo port install automake
 3. sudo port install autoconf
 4. sudo port install libtool
 5. sudo port install intltoo 
 6. sudo port install pkgconfig
 7. sudo port install cmake
 8. glibtoolize --ltdl --force --copy
 9. autoreconf

 and then build your code using

 ./configure
 make
 make install
于 2012-08-07T05:04:06.507 に答える