Erro ao instalar a extensão php OAuth por pecl, por favor me ajude

1

Estou tentando instalar a extensão php OAuth no meu servidor centos 6 linux. php.net sugere que é super fácil. Você acabou de correr

pecl install oauth

Eu tentei isso e aqui está a saída no terminal:

[root@www extensions]# pecl install oauth 
WARNING: channel "pecl.php.net" has updated its protocols, use "pecl channel-update 
pecl.php.net" to update
downloading oauth-1.2.2.tgz ...
Starting to download oauth-1.2.2.tgz (45,348 bytes)
.............done: 45,348 bytes
6 source files, building
running: phpize
Configuring for:
PHP Api Version:         20100412
Zend Module Api No:      20100525
Zend Extension Api No:   220100525
building in /var/tmp/pear-build-rootlyYnpP/oauth-1.2.2
running: /var/tmp/oauth/configure
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
configure: error: Cannot find php-config. Please use --with-php-config=PATH
ERROR: '/var/tmp/oauth/configure' failed
    
por boo 01.08.2012 / 08:54

1 resposta

2

Existe um erro:

configure: error: Cannot find php-config.

e na mesma linha, instruções sobre como corrigi-lo:

Please use --with-php-config=PATH

Obviamente, PATH precisa ser substituído pelo caminho real para seu php-config .

Se você não tiver o php-config instalado, será necessário instalá-lo primeiro.

    
por 01.08.2012 / 09:22