Created
January 21, 2015 06:46
-
-
Save yuki777/3d43c5bee88a1ba52812 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/local/src | |
tar zxvf php-5.3.29.tgz | |
cd ~/local/src/php-5.3.29 | |
./configure --prefix=~/local --exec-prefix=~/local/php53 --program-suffix=53 | |
make && make install | |
cd ~/local/src | |
tar zxvf php-5.4.36.tgz | |
cd ~/local/src/php-5.4.36 | |
./configure --prefix=~/local --exec-prefix=~/local/php54 --program-suffix=54 | |
make && make install | |
cd ~/local/src | |
tar zxvf php-5.5.20.tgz | |
cd ~/local/src/php-5.5.20 | |
./configure --prefix=~/local --exec-prefix=~/local/php55 --program-suffix=55 | |
make && make install | |
cd ~/local/src | |
tar zxvf php-5.6.4.tgz | |
cd ~/local/src/php-5.6.4 | |
./configure --prefix=~/local --exec-prefix=~/local/php56 --program-suffix=56 | |
make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment