Skip to content

Commit b6257f7

Browse files
committed
Update the apache version seems like a good idea, as does getting my server out of the loop.
1 parent a24c72d commit b6257f7

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.travis/apache_clang.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ export PATH=/usr/lib/llvm-3.4/bin:${WLLVM_HOME}:${PATH}
77
export LLVM_COMPILER=clang
88
export WLLVM_OUTPUT=WARNING
99

10-
wget http://www.csl.sri.com/~iam/httpd-2.4.12.tar.gz
11-
tar xfz httpd-2.4.12.tar.gz
12-
mv httpd-2.4.12 apache_clang
10+
APACHE_VER=2.4.17
11+
wget http://apache.mirrors.pair.com//httpd/httpd-${APACHE_VER}.tar.gz
12+
tar xfz httpd-${APACHE_VER}.tar.gz
13+
mv httpd-${APACHE_VER} apache_clang
14+
15+
1316
cd apache_clang
1417
CC=wllvm ./configure
1518
make

.travis/apache_dragonegg.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ export LLVM_DRAGONEGG_PLUGIN=/usr/lib/gcc/x86_64-linux-gnu/4.6/plugin/dragonegg.
1111

1212
export WLLVM_OUTPUT=WARNING
1313

14-
wget http://www.csl.sri.com/~iam/httpd-2.4.12.tar.gz
15-
tar xfz httpd-2.4.12.tar.gz
16-
mv httpd-2.4.12 apache_dragonegg
14+
APACHE_VER=2.4.17
15+
wget http://apache.mirrors.pair.com//httpd/httpd-${APACHE_VER}.tar.gz
16+
tar xfz httpd-${APACHE_VER}.tar.gz
17+
mv httpd-${APACHE_VER} apache_dragonegg
1718
cd apache_dragonegg
1819
CC=wllvm ./configure
1920
make

0 commit comments

Comments
 (0)