Server-Side/Linux2010. 8. 26. 17:38
# ./configure !@#!@#!@#
.
.
configure: error: xml2-config not found. please check your libxml2 installation.


php설치중에 ./configure 명령어를 수행하면 위와 같은 에러를 발견할텐데 간단히 다음 명령어를 수행하자.

# yum install libxml2
# yum install libxml2-devel


그럼 설치가 잘 된다!
Posted by 준피
Server-Side/Linux2010. 8. 26. 16:27
# ./configure --prefix=/usr/local/mysql-5.0.37 --with-charset=utf8 --with-collation=utf8_general_ci
.
.
.
@#$@#$%#$%#$%     No curses/termcap library found MySql

mysql을 설치하는 중에 ./configure 명령어 후에 다음과 같은 에러를 내면서 make를 할 수 없는 상황이 왔을 때 해결법을 찾았다.

# yum install libtermcap-devel

이후엔 설치가 잘 될꺼다!
Posted by 준피