레이블이 configure인 게시물을 표시합니다. 모든 게시물 표시
레이블이 configure인 게시물을 표시합니다. 모든 게시물 표시

2010. 8. 26.

[CentOS] configure: error: xml2-config not found. please check your libxml2 installation.

# ./configure !@#!@#!@#
.
.
configure: error: xml2-config not found. please check your libxml2 installation.


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

# yum install libxml2
# yum install libxml2-devel


그럼 설치가 잘 된다!

[CentOS] No curses/termcap library found MySql

# ./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

이후엔 설치가 잘 될꺼다!