Commit:    a1afc0a1398ee1d18dab76c5c97c0a6da98531f3
Author:    Xinchen Hui <larue...@gmail.com>         Sat, 23 Feb 2013 15:21:48 
+0800
Parents:   a9910f3ce21905ddb125edb18f490529ea18adfc
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=a1afc0a1398ee1d18dab76c5c97c0a6da98531f3

Log:
Simplify the install instructions

Changed paths:
  M  README


Diff:
diff --git a/README b/README
index 3854915..16854be 100644
--- a/README
+++ b/README
@@ -18,20 +18,19 @@ Quick Install
 
 - Compile
 
-export PHP_DIR=/usr/local/php5.5
-PHP_AUTOCONF=autoconf $PHP_DIR/bin/phpize
-./configure \
+ $PHP_DIR/phpize
+ ./configure \
       --enable-optimizer-plus \
       --with-php-config=$PHP_DIR/bin/php-config
-make
+ make
 
 - Install
 
-cp .libs/ZendOptimizerPlus.so $PHP_DIR/lib/ZendOptimizerPlus.so
+ make install 
 
 - Edit php.ini
 
-zend_extension=/...full path.../ZendOptimizerPlus.so
+ zend_extension=/...full path.../ZendOptimizerPlus.so
 
 NOTE: In case you are going to use Zend Optimizer+ together with Xdebug,
 be sure that Xdebug is loaded after Optimizer+. "php -v" must show Xdebug


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to