yum install g++
yum install gcc
yum install make
?
安装python 开发组件
yum install python
yum install python-dev
?
?
?
安装make
yum install make
?
make: *** no targets specified and no makefile found. stop.解决方法2009-11-04 16:57?
1、wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.6.tar.gz
2.、tar zxvf ncurses-5.6.tar.gz
3、 ./configure -prefix=/usr/local -with-shared -without-debug
4、make
5、make install
?
?
?
?yum install? libjpeg-devel freetype-devel libpng-devel?
?
?./configure --prefix=/usr/local/gd --with-png=/usr/local/libpng --with-freetype=/usr/local/freetype --with-jpeg=/usr/local/jpeg
?
?
1、检查freetype是否安装
rpm -qa | grep freetype
没有的话编译freetype 这里下载
./configure --prefix=/usr/local/freetype
make && make install 即可,没有花头
2、检查libjpeg是否安装
rpm -qa | grep libjpeg
没有的话编译libjpeg 这里下载
我也没装libjpeg,下载好开始编译
jpegsrc.v6b.tar.gz
tar -xzvf jpegsrc.v6b.tar.gz
cd jpeg-6b/
./configure --prefix=/usr/local/jpeg --enable-shared
make && make install
最后一步make install 出错:
/usr/bin/install -c -m 644 jconfig.h /usr/local/jpeg/include/jconfig.h
/usr/bin/install: cannot create regular file `/usr/local/jpeg/include/jconfig.h': no such file or directory
make: *** [install-headers] error 1
/usr/bin/install: cannot create regular file `/usr/local/jpeg/lib/libjpeg.so.62.0.0': no such file or directory
/usr/bin/install: cannot create regular file `/usr/local/jpeg/bin/cjpeg': no such file or directory
make: *** [install-lib] error 1
难道安装程序自己新建一下目录都不行??晕,我自己去新建目录
mkdir -p /usr/local/jpeg/include
mkdir -p /usr/local/jpeg/lib
mkdir -p /usr/local/jpeg/bin
mkdir -p /usr/local/jpeg/man/man1
ok再编译就成功了
3、检查是否安装了libpng
rpm -qa libpng
没有的话编译libpng 这里下载
./configure --prefix=/usr/local/png
make && make install
4、安装gd库 这里下载
tar -zxvf gd-2.0.35.tar.gz
cd gd-2.0.35
./configure --prefix=/usr/local/gd2
5、编译php 这里下载
tar -zxvf php-5.2.5.tar.gz
cd php-5.2.5
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-zlib --with-jpeg-dir=/usr/local/jpeg --with-png-dir=/usr/local/png --with-freetype-dir=/usr/local/freetype --enable-ftp --enable-sockets --with-gd=/usr/local/gd2 --enable-gd-native-ttf --with-ttf --enable-magic-quotes --with-iconv -enable-mbstring=all
ok 全部完成
ps:如果安装有报错:
configure.ac:64: error: possibly undefined macro: am_iconv
? if this token and others are legitimate, please use m4_pattern_allow.
? see the autoconf documentation.
make: *** [configure] error 1
需要安装gettext 这里下载
?
?
?
configure: error: unable to find libgd.(a|so)
如果使用的是ubuntu或debian就很简单了,直接sudo apt-get install apache2 libapache2-mod-php5 php5 php5-gd 就基本上搞定,但是用源代码安装还是很麻烦~
wget?http://www.boutell.com/gd/http/gd-2.0.11.tar.gz
tar zxvf gd-2.0.11.tar.gz
cd gd-2.0.11
sudo ./configure --prefix=/usr/local/gd2
sudo make
sudo make install再php:~/:./configure? …… --with-gd=/usr/local/gd2? ……
以下是转载的,而且都是基于yum install或者apt-get的。
1) configure: error: xml2-config not found. please check your libxml2 installation.
solutions :
quote:#yum install?libxml2?libxml2-devel?(for redhat & fedora)# aptitude install libxml2-dev? (for ubuntu)
2) checking for pkg-config… /usr/bin/pkg-config
configure: error: cannot find openssl’s
solutions :
quote:#yum install?openssl?openssl-devel
3) configure: error: please reinstall the bzip2 distribution
solutions :
quote:#?yum install?bzip2?bzip2-devel
4) configure: error: please reinstall the libcurl distribution -
easy.h should be in /include/curl/
solutions :
quote:#?yum install?curl?curl-devel ? (for redhat & fedora)# install libcurl4-gnutls-dev? (for ubuntu)
5) configure: error: libjpeg.(also) not found.
solutions :
quote:#?yum install?libjpeg?libjpeg-devel
6) configure: error: libpng.(also) not found.
solutions :
quote:#?yum install?libpng?libpng-devel
7) configure: error: freetype.h not found.
solutions :
quote:#yum install freetype-devel
8) configure: error: unable to locate gmp.h
solutions :
quote:#?yum install gmp-devel
9) configure: error: cannot find mysql header files under /usr.
note that the mysql client library is not bundled anymore!
solutions :
quote:#?yum install mysql-devel? (for redhat & fedora)# apt-get install libmysql++-dev? (for ubuntu)
10) configure: error: please reinstall the ncurses distribution
solutions :
quote:#?yum install?ncurses?ncurses-devel
11) checking for unixodbc support… configure: error: odbc header file ‘/usr/include/sqlext.h’ not found!
solutions :
quote:#?yum install unixodbc-devel
12) configure: error: cannot find pspell
solutions :
quote:#?yum install pspell-devel
13) configure: error: mcrypt.h not found. please reinstall libmcrypt.
solutions :
quote:#?yum install libmcrypt libmcrypt-devel? (for redhat & fedora)# apt-get install libmcrypt-dev
14) configure: error: snmp.h not found. check your snmp installation.
solutions :
quote:#?yum install?net-snmp?net-snmp-devel
以下是我自己出现的问题
http://www.linuxquestions.org/questions/linux-server-73/error-compiling-php-usrbinld-cannot-find-lltdl-656764/
problem:error compiling php: /usr/bin/ld: cannot find -lltdl
? solution: yum install libtool-ltdl-devel
