web-dev-qa-db-ja.com

PECLインストール/ phpizeエラー

これは私のPHP設定です

##################################################################
# setup PHP
##################################################################

# we use this to make inline CSS in newsletter
yum install php php-tidy php-xml php-xmlrpc php-Gd -y

# if make is missing
yum install gcc automake autoconf libtool make -y

# configuring php pecl http
yum install zlib-devel curl-devel php-devel php-pear -y

# required by phpMyAdmin
yum install php-mcrypt php-mbstring php-bcmath pcre -y

pecl channel-update pecl.php.net
pecl upgrade

pecl install bbcode
pecl install pecl_http
pecl install apc
pecl install oauth

# add to /etc/php.ini

extension=bbcode.so
extension=http.so
extension=apc.so
extension=oauth.so

apc.shm_size="128MB"

残念ながら、実行すると

pecl install oauth

私は得ます:

[root@server ~]# pecl install oauth
downloading oauth-1.1.0.tgz ...
Starting to download oauth-1.1.0.tgz (44,731 bytes)
............done: 44,731 bytes
6 source files, building
ERROR: could not chdir to /var/tmp/oauth/examples

まあ、私はディレクトリを作成すると言います。

[root@server ~]# mkdir /var/tmp/oauth
[root@server ~]# mkdir /var/tmp/oauth/examples
[root@server ~]# pecl install oauth
downloading oauth-1.1.0.tgz ...
Starting to download oauth-1.1.0.tgz (44,731 bytes)
............done: 44,731 bytes
6 source files, building
running: phpize
Cannot find config.m4.
Make sure that you run '/usr/bin/phpize' in the top level source directory of the module

ERROR: `phpize' failed
[root@server ~]# 

ええと。これはあきらめる。過去数時間、それを修正しようとしていました。

より詳しい情報。

[root@server ~]# phpize -v
Configuring for:
PHP Api Version:         20090626
Zend Module Api No:      20090626
Zend Extension Api No:   220090626

そして

[root@server ~]# find / -name "config.m4"
[root@server ~]# 
4
Gajus

これは実際にはPECLのバグです。 ( http://pecl.php.net/bugs/bug.php?id=16746

解決策はPECLページにあります。

1
Gajus

手動で探しているライブラリをダウンロードします。たとえば、PDO_MYSQL-1.0.2.tgzとします。それを解凍し、ディレクトリPD0_MYSQL-1.0.2に移動します。 phpizeを実行します。インストールされます。

お役に立てれば

0
user96229