php 安装过程遇到的问题
转载http://chlotte.blog.运维网.com/318402/458342编译php-5.2.5的时候遭遇configure: error: libjpeg.(a|so) not found.这个问题,顺便做个记录。
解决方法是:yum install libjpeg-devel 再重新编译即可。
php官方也有解决方法: http://bugs.php.net/bug.php?id=33685
以下是转载的,而且都是基于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 libjpeglibjpeg-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-snmpnet-snmp-devel
=======================
下面这篇也很不错 借来大家共享一下
http://blogold.chinaunix.net/u/17549/showart_394296.html
Centos5下postgresql8.2.5与pgadminIII-1.6.3的安装 CentOS下的postgresql版本是8.1.9的,不能安装pgAdmin3-1.6.3,由于本人喜欢新的东西,所以以前的postgresql很难满足我的要求。
现在就删除与重新安装PG与PGAdmin3的步骤记录下来,希望对与我一样的朋友有所帮忙。
第一步:查看以前的PG安装情况
$ rpm -qa | grep postgresql postgresql-libs-8.1.9-1.el5
postgresql-python-8.1.9-1.el5
postgresql-server-8.1.9-1.el5
postgresql-8.1.9-1.el5
第二步:删除以前的安装 $ sudo rpm -e postgresql-python-8.1.9-1.el5
$ sudo rpm -e postgresql-server-8.1.9-1.el5
$ sudo rpm -e postgresql-8.1.9-1.el5
$ sudo rpm -e postgresql-libs-8.1.9-1.el5
error: Failed dependencies:
libpq.so.4 is needed by (installed) apr-util-1.2.7-6.i386
libpq.so.4 is needed by (installed) perl-DBD-Pg-1.49-1.fc6.i386
大家看到了吧,不能删除postgresql-libs-8.1.9-1.el5包,这主要是libpq.so.4,其它软件在用着它,改决办法是,把从postgresql.org下载下载的新包替换掉他,请看下面操作。
第三步:改决包冲突问题
$ sudo rpm -ivh --replacefiles compat-postgresql-libs-4-1PGDG.rhel5.i686.rpm
Preparing... ###########################################
1:compat-postgresql-libs ###########################################
第四步:完成老版本的postgresql的删除
$ sudo rpm -e postgresql-libs-8.1.9-1.el5
第五步:安装新版本的PG(到官方下载最新的包)
$ sudo rpm -ivh postgresql*
Password:
warning: postgresql-8.2.5-1PGDG.rhel5.i686.rpm: Header V3 DSA signature: NOKEY, key> Preparing... ###########################################
1:postgresql-libs ########################################### [ 33%]
2:postgresql ########################################### [ 67%]
3:postgresql-server ###########################################
第六步:安装pgadmin3
$ sudo rpm -ivh pgadmin3-1.6.3-1.i386.rpm
error: Failed dependencies:
libwx_baseu-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_baseu-2.8.so.0(WXU_2.8) is needed by pgadmin3-1.6.3-1.i386
libwx_baseu_net-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_baseu_net-2.8.so.0(WXU_2.8) is needed by pgadmin3-1.6.3-1.i386
libwx_baseu_xml-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_adv-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_adv-2.8.so.0(WXU_2.8) is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_aui-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_aui-2.8.so.0(WXU_2.8) is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_core-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_core-2.8.so.0(WXU_2.8) is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_html-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_html-2.8.so.0(WXU_2.8) is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_ogl-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_ogl-2.8.so.0(WXU_2.8) is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_qa-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_stc-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_stc-2.8.so.0(WXU_2.8) is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_xrc-2.8.so.0 is needed by pgadmin3-1.6.3-1.i386
libwx_gtk2u_xrc-2.8.so.0(WXU_2.8) is needed by pgadmin3-1.6.3-1.i386
第七步:解决包依赖关系(去官方下载)
$ sudo rpm -ivh wxGTK*
Preparing... ###########################################
1:wxGTK ########################################### [ 33%]
2:wxGTK-gl ########################################### [ 67%]
3:wxGTK-devel ###########################################
第八步:完成安装
$ sudo rpm -ivh pgadmin3-1.6.3-1.i386.rpm
Preparing... ###########################################
1:pgadmin3 ###########################################
页:
[1]