본문 바로가기

LINUX & UNIX

리눅스 소스 컴파일시 나올 수 있는 에러들 과 그에 따르는 대책

반응형


1)error: xml2-config not found. Please check your libxml2 installation.
해결책 : yum install libxml2-devel

2) Checking for pkg-config... /usr/bin/pkg-config
configure : error: Cannot find OpenSSL's <evp.h>
해결책 : yum install openssl-devel

3)error: Please reinstall the BZip2 distribution
해결책 : yum install bzip2-devel

4)error: Please reinstall the libcurl distribution
해결책 yum install curl-devel

5)error: libjpeg.(also) not found.
해결책 yum install libjpeg-devel

6)error: libpng.(also) not found.
해결책 yum install libpng-devel

7)error: freetype.h not found.
해결책 yum install freetype-devel

8)error: Unable to locate gmp.h
해결책 yum install gmp-devel

9)error: Cannot find MySQL header files under /usr.....
해결책 yum install mydql-devel

10)error:  Please reinstall the ncurses distribution
해결책 yum install ncurses-devel

11)checking for unixODBC support... configure : error : ODBC header file '/usr/include/sqlext.h' not found!
해결책 yum install unixODBC-devel

12)error: Cannot find phpell
해결책 yum install pspell-devel

13)error: snmp.h not found. Check your SNMP installation.
해결책 yum install net-snmp-devel

14)error: Cannot find ldap.h

해결책 yum install -y openldap-devel

15)error: No curses/termcap library found
해결책 yum install ncurses-devel

반응형