Created
October 25, 2012 11:52
-
-
Save koizuss/3952175 to your computer and use it in GitHub Desktop.
install "httpd-2.4.3"
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
sudo apt-get install libpcre3-dev | |
curl -O http://apache.mesi.com.ar/apr/apr-1.4.6.tar.gz | |
curl -O http://apache.mesi.com.ar/apr/apr-util-1.4.1.tar.gz | |
curl -O http://mirrors.linsrv.net/apache/httpd/httpd-2.4.3.tar.gz | |
tar zxvf apr-1.4.6.tar.gz | |
tar zxvf apr-util-1.4.1.tar.gz | |
tar zxvf httpd-2.4.3.tar.gz | |
mkdir httpd-2.4.3/srclib | |
mv apr-1.4.6 httpd-2.4.3/srclib | |
mv httpd-2.4.3/srclib/apr-1.4.6 httpd-2.4.3/srclib/apr | |
mv apr-util-1.4.1 httpd-2.4.3/srclib | |
mv httpd-2.4.3/srclib/apr-util-1.4.1 httpd-2.4.3/srclib/apr-util | |
cd httpd-2.4.3 | |
./configure --with-included-apr --with-pcre | |
make | |
make install | |
echo SUCCESSFUL | |
echo add PATH </usr/local/apache2/bin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment