iOS2015. 5. 13. 19:02



매버릭스부터인가? automake, autoconf, libtool을 xcode가 기본제공하지 않는다고 한다.

그리하여 부득이 아래와 같이 직접 소스를 빌드하여 설치하여야 한다.


curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz
tar -xzf autoconf-2.69.tar.gz 
cd autoconf-2.69
./configure && make && sudo make install
 
curl -OL http://ftpmirror.gnu.org/automake/automake-1.14.tar.gz
tar -xzf automake-1.14.tar.gz
cd automake-1.14
./configure && make && sudo make install
 
curl -OL http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz
tar -xzf libtool-2.4.2.tar.gz
cd libtool-2.4.2
./configure && make && sudo make install


Posted by 삼스