安装php的libevent

来源:互联网 发布:chrome 抢票插件 mac 编辑:程序博客网 时间:2024/05/17 02:25
libevent扩展安装

libevent-2.0.16-stable.tar 

http://libevent.org/

[plain] view plain copy
  1. cd libevent-2.0.16-stable  
  2. ./configure  
  3. make   
  4. make install  


下载php-libevent  c 扩展
http://pecl.php.net/package/libevent
[plain] view plain copy
  1. tar -xzvf  libevent-0-1.0.0.tar  
  2. cd libevent-0.1.0  
  3. /usr/bin/phpize   
  4.  ll  
  5.  ./configure  --with-php-config=/usr/bin/php-config   
  6.  make  
  7.  make install  
0 0