Skip to content

Commit

Permalink
Add support for automatically downloading APR, since it's now package…
Browse files Browse the repository at this point in the history
…d separately.
  • Loading branch information
perlDreamer committed May 26, 2012
1 parent 6e811e4 commit 1908fe0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions getsource.sh
Expand Up @@ -71,6 +71,18 @@ tar jxf gnutls-2.12.19.tar.bz2
wget -t 4 -nv http://www.apache.org/dist/httpd/httpd-2.4.2.tar.gz
tar zxf httpd-2.4.2.tar.gz

# Apache runtime support libraries http://httpd.apache.org/
wget -t 4 -nv http://apache.mirrors.tds.net//apr/apr-1.4.6.tar.bz2
wget -t 4 -nv http://apache.mirrors.tds.net//apr/apr-util-1.4.1.tar.bz2
wget -t 4 -nv http://apache.mirrors.tds.net//apr/apr-iconv-1.2.1.tar.bz2

##Need to be unpacked inside of the httpd build directory, accoring to INSTALL
cd httpd-2.4.2/srclib
tar jxf ../../apr-1.4.6.tar.bz2
tar jxf ../../apr-util-1.4.1.tar.bz2
tar jxf ../../apr-iconv-1.2.1.tar.bz2
cd ../../

# lftp sophisticated ftp client http://lftp.yar.ru/
wget -t 4 -nv http://ftp.yars.free.net/pub/source/lftp/lftp-4.3.6.tar.gz
tar zxf lftp-4.3.6.tar.gz
Expand Down

0 comments on commit 1908fe0

Please sign in to comment.