将memcache静态编译入 PHP

$ cd /your/phpsrcdir/ext
$ pear download memcache
$ gzip -d < memcache-2.1.2.tgz | tar -xvf -
$ mv memcache-2.1.2.tgz extname

$ cd /your/phpsrcdir
$ rm configure
$ ./buildconf --force
$ ./configure --help
$ ./configure --enable-memcache
$ make
$ make install

你可能感兴趣的:(PHP,download)