프로그램/linux2014. 8. 7. 15:59

php 설치 configure 진행 중에 mcrypt.h not found 에러 발생

 

오류 내용>

configure: error: mcrypt.h not found. Please reinstall libmcrypt. 

 

 

 

 

방법> libmcrypt를 설치한다. (yum을 이용한 mcrypt 설치)

Posted by 은둔고수
프로그램/linux2014. 8. 7. 15:35

yum을 이용해서 mcrypt를 설치한다.

mcrypt 설치 확인

]# rpm –qa | grep mcrypt

 

 

mcrypt 설치

]# yum install libmcrypt

]# yum install libmcrypt-devel

 

 

mcrypt 설치 확인

]# rpm –qa | grep mcrypt

 

 

Posted by 은둔고수