Skip to content

Commit 7b6d0e0

Browse files
committedMay 27, 2012
Add download for PCRE (needed by apache). Fix unpack and install of APR.
1 parent 1908fe0 commit 7b6d0e0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎getsource.sh

+7
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ tar zxf p11-kit-0.12.tar.gz
6767
wget -t 4 -nv ftp://ftp.gnu.org/pub/gnu/gnutls/gnutls-2.12.19.tar.bz2
6868
tar jxf gnutls-2.12.19.tar.bz2
6969

70+
# PCRE
71+
wget -t 4 -nv ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.30.tar.bz2
72+
tar jxf pcre-8.30.tar.bz2
73+
7074
# httpd apache webserver http://httpd.apache.org/
7175
wget -t 4 -nv http://www.apache.org/dist/httpd/httpd-2.4.2.tar.gz
7276
tar zxf httpd-2.4.2.tar.gz
@@ -79,8 +83,11 @@ wget -t 4 -nv http://apache.mirrors.tds.net//apr/apr-iconv-1.2.1.tar.bz2
7983
##Need to be unpacked inside of the httpd build directory, accoring to INSTALL
8084
cd httpd-2.4.2/srclib
8185
tar jxf ../../apr-1.4.6.tar.bz2
86+
mv apr-1.4.6 apr
8287
tar jxf ../../apr-util-1.4.1.tar.bz2
88+
mv apr-util-1.4.1 apr-util
8389
tar jxf ../../apr-iconv-1.2.1.tar.bz2
90+
mv apr-iconv-1.2.1 apr-iconv
8491
cd ../../
8592

8693
# lftp sophisticated ftp client http://lftp.yar.ru/

0 commit comments

Comments
 (0)
Please sign in to comment.