Only For Debian And CentOS 5
configure: error: No curses/termcap library foundThe wrong way:
--with-named-curses-libs=/usr/lib/libncursesw.so.5
It can config the configure error, but it will cause make time error, the right way is:
yum -y install ncurses-devel
debian: apt-get install libncurses5-dev
configure: error: xml2-config not foundyum -y install libxml2-devel
debian:apt-get install libxml2-dev
configure: error: Cannot find OpenSSL's yum -y install openssl-devel
configure: error: libjpeg.(a|so) not foundyum -y install gd
yum -y install gd-devel
debian:apt-get install libjpeg-dev
configure: error: libpng.(a|so) not found.apt-get install libpng12-dev
configure: error: cannot find output from lex; giving upyum -y install flex
configure: error: mod_deflate has been requested but can not be built due to prerequisite failuresyum -y install zlib-devel openssl-devel
debian:apt-get install zlib1g-dev
configure: error: libXpm.(a|so) not found.apt-get install libxpm-dev
onfigure: error: freetype.h not found.apt-get install libfreetype6-dev
configure: error: ...No recognized SSL/TLS toolkit detectedapt-get install libssl-dev
configure: error: Please reinstall the libcurl distribution - easy.h should be in /include/curl/yum -y install curl-devel