Compile Apache yourself

From genomewiki
Revision as of 07:45, 12 May 2017 by Max (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
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