Compile Apache yourself: Difference between revisions

From genomewiki
Jump to navigationJump to search
(Created page with "<pre> wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz tar xvfz pcre-8.39.tar.gz cd pcre-8.39 ./configure && make -j10 cd apr-1.5.2 ./configure && ma...")
 
(No difference)

Latest revision as of 07:45, 12 May 2017

wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
tar xvfz pcre-8.39.tar.gz
cd pcre-8.39
./configure && make -j10

cd apr-1.5.2
./configure  && make -j10

cd apr-util-1.5.4
./configure --with-apr=../apr-1.5.2  && make -j10

cd httpd-2.4.25/
./configure --enable-static-htpasswd --with-apr=../apr-1.5.2 --with-apr-util=../apr-util-1.5.4 --with-pcre=/home/ubuntu/pcre-8.39/pcre-config && make -j30