configure 에러

리눅스 2015. 8. 11. 15:37

configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution

yum install libxslt-devel


configure: error: Could not find net-snmp-config binary. Please check your net-snmp installation.

yum install net-snmp-devel


configure: error: Please reinstall readline - I cannot find readline.h

yum install readline-devel


configure: error: Cannot find pspell

yum install aspell-devel


checking for unixODBC support... configure: error: ODBC header file '/usr/include/sqlext.h' not found!

yum install unixODBC-devel


configure: error: Unable to detect ICU prefix or /usr/bin/icu-config failed. Please verify ICU install prefix and make sure icu-config works.

yum install libicu-devel


configure: error: utf8mime2text() has new signature, but U8TCANONICAL is missing. This should not happen. Check config.log for additional information.

yum install libc-client-devel


configure: error: freetype.h not found.

yum install freetype-devel


configure: error: xpm.h not found.

yum install libXpm-devel


configure: error: png.h not found.

yum install libpng-devel


configure: error: vpx_codec.h not found.

yum install libvpx-devel


configure: error: Cannot find enchant

yum install enchant-devel


configure: error: Please reinstall the libcurl distribution - easy.h should be in /include/curl/

yum install libcurl-devel


configure: error: Cannot find ldap.h

 yum install openldap-devel


make: warning:  Clock skew detected.  Your build may be incomplete.

시간을 동기화 시킨다.



checking for termcap functions library... configure: error: No curses/termcap library found

yum -y install ncurses-devel


configure: error: C++ preprocessor "/lib/cpp" fails sanity check

yum -y install gcc-c++


configure: error: Unable to locate gmp.h

 yum -y install gmp*


configure: error: not found. Please reinstall the expat distribution.

yum -y install expat*


configure: error: Please reinstall the libcurl distribution - easy.h should be in /include/curl/

 yum -y install curl* 또는 yum -y install curl & yum -y install curl-devel


configure: error: Please reinstall libmcrypt - I cannot find mcrypt.h 

configure: error: Please reinstall libmhash - I cannot find mhash.h

 yum install libmcrypt libmcrypt-devel libmhash libmhash-devel


Configure: error: xml2-config not found. Please check your libxml2 installation

yum install libxml2-devel


Checking for pkg-config... /usr/bin/pkg-config

configure: error: Cannot find OpenSSL's <evp.h>

yum install openssl-devel


Configure: error: Please reinstall the BZip2 distribution

 yum install bzip2-devel


Configure: error: libjpeg.(also) not found.

 yum install libjpeg-devel


Configure: error: libpng.(also) not found.

 yum install libpng-devel


Configure: error: freetype.h not found.

yum install freetype-devel


Configure: error: Cannot find MySQL header files under /usr.

Note that the MySQL client library is not bundled anymore!

 yum install mysql-devel


Configure: error: Please reinstall the ncurses distribution

yum install ncurses-devel


Configure: error: Cannot find pspell

yum install pspell-devel


Configure: error: snmp.h not found. Check your SNMP installation.

 yum install net-snmp-devel


Configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information.

 yum install libc-client-devel


Configure: error: libXpm.(a|so) not found   에러날때

 yum install xorg-x11-devel

ldconfig -p | grep Xpm

ldconfig -p | grep Xpm

libXpm.so.4 (libc6,x86-64) => /usr/lib64/libXpm.so.4

libXpm.so (libc6,x86-64) => /usr/lib64/libXpm.so


 ln -sf /usr/lib64/libm.so /usr/lib/libm.so

 ln -sf /usr/lib64/libssl.so /usr/lib/libssl.so


 


Configure: error: mcrypt.h not found. Please reinstall libmcrypt.   에러날때

wget http://ftp.linux.co.kr/pub/etc/libmcrypt-2.5.7.tar.gz

    tar zxvfp libmcrypt-2.5.7.tar.gz

    cd libmcrypt-2.5.7

    ./configure && make && make install

 



configure: error: ZLIB extension requires zlib >= 1.0.9

ln -sf /usr/lib64/libgssapi_krb5.so.2.2 /usr/lib/libgssapi_krb5.so

ln -sf /usr/lib64/libkrb5.so.3.3 /usr/lib/libkrb5.so

ln -sf /usr/lib64/libk5crypto.so.3.1 /usr/lib/libk5crypto.so

ln -sf /lib64/libcom_err.so.2 /usr/lib/libcom_err.so

ln -sf /usr/lib64/libgcrypt.so.11 /usr/lib/libgcrypt.so

ln -sf /usr/lib64/libgpg-error.so.0 /usr/lib/libgpg-error.so

ln -sf /usr/lib64/libexpat.so /usr/lib/libexpat.so

ln -sf /usr/lib64/libm.so /usr/lib/libm.so

ln -sf /usr/lib64/libssl.so /usr/lib/libssl.so



configure: error: Kerberos libraries not found.

           Check the path given to --with-kerberos (if no path is given, searches in /usr/kerberos, /usr/local and /usr )

mkdir /usr/kerberos
cd /usr/kerberos
ln -s /usr/lib64 lib



참고 사이트 http://hyperv.tistory.com/entry/apm-config%EC%8B%9C-%EC%97%90%EB%9F%AC


Posted by Narusika
,