I've got a little issue here regarding autoconf. Basically I did this:
----------------------------------------------------------------------------------
[root@www bin]# cd /opt
[root@www opt]# wget
http://pecl.php.net/get/memcache-2.1.0.tgz
--10:41:02--
http://pecl.php.net/get/memcache-2.1.0.tgz
=> `memcache-2.1.0.tgz'
Resolving pecl.php.net... 216.92.131.66
Connecting to pecl.php.net|216.92.131.66|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 19,567 (19K) [application/octet-stream]
100%[==================================================================================================== ===================================>] 19,567 92.76K/s
10:41:02 (92.49 KB/s) - `memcache-2.1.0.tgz' saved [19567/19567]
[root@www opt]# gunzip memcache-2.1.0.tgz
[root@www opt]# tar -xvf memcache-2.1.0.tar
package.xml
memcache-2.1.0/CREDITS
memcache-2.1.0/README
memcache-2.1.0/example.php
memcache-2.1.0/config.m4
memcache-2.1.0/config.w32
memcache-2.1.0/php_memcache.h
memcache-2.1.0/memcache.c
memcache-2.1.0/memcache.dsp
[root@www opt]# cd memcache-2.1.0
[root@www memcache-2.1.0]# ls
config.m4 config.w32 CREDITS example.php memcache.c memcache.dsp php_memcache.h README
[root@www memcache-2.1.0]# phpize
Configuring for:
PHP Api Version: 20041225
Zend Module Api No: 20060613
Zend Extension Api No: 220060519
Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF
environment variable is set correctly and then rerun this script.
----------------------------------------------------------------------------------
I've found autoconf and did:
----------------------------------------------------------------------------------
[root@www memcached-1.2.4]# export PHP_AUTOCONF="/usr/bin/"
[root@www memcached-1.2.4]# pecl install memcache
downloading memcache-2.2.3.tgz ...
Starting to download memcache-2.2.3.tgz (27,304 bytes)
.........done: 27,304 bytes
11 source files, building
running: phpize
Configuring for:
PHP Api Version: 20041225
Zend Module Api No: 20060613
Zend Extension Api No: 220060519
/usr/bin/phpize: /tmp/pear/cache/memcache-2.2.3/build/shtool: /bin/sh: bad interpreter: Permission denied
Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF
environment variable is set correctly and then rerun this script.
ERROR: `phpize' failed
----------------------------------------------------------------------------------
I'm not 100% sure what I should change $PHP_AUTOCONF to. Any ideas?