Skip to content

Commit 1908fe0

Browse files
committedMay 26, 2012
Add support for automatically downloading APR, since it's now packaged separately.
1 parent 6e811e4 commit 1908fe0

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎getsource.sh

+12
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,18 @@ tar jxf gnutls-2.12.19.tar.bz2
7171
wget -t 4 -nv http://www.apache.org/dist/httpd/httpd-2.4.2.tar.gz
7272
tar zxf httpd-2.4.2.tar.gz
7373

74+
# Apache runtime support libraries http://httpd.apache.org/
75+
wget -t 4 -nv http://apache.mirrors.tds.net//apr/apr-1.4.6.tar.bz2
76+
wget -t 4 -nv http://apache.mirrors.tds.net//apr/apr-util-1.4.1.tar.bz2
77+
wget -t 4 -nv http://apache.mirrors.tds.net//apr/apr-iconv-1.2.1.tar.bz2
78+
79+
##Need to be unpacked inside of the httpd build directory, accoring to INSTALL
80+
cd httpd-2.4.2/srclib
81+
tar jxf ../../apr-1.4.6.tar.bz2
82+
tar jxf ../../apr-util-1.4.1.tar.bz2
83+
tar jxf ../../apr-iconv-1.2.1.tar.bz2
84+
cd ../../
85+
7486
# lftp sophisticated ftp client http://lftp.yar.ru/
7587
wget -t 4 -nv http://ftp.yars.free.net/pub/source/lftp/lftp-4.3.6.tar.gz
7688
tar zxf lftp-4.3.6.tar.gz

0 commit comments

Comments
 (0)
Please sign in to comment.