aboutsummaryrefslogtreecommitdiff
path: root/test/build/httpd-build.sh
blob: a5b43d7443291c47917e8ebbade4efb9578dbabb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

export PATH=/bin:/usr/bin

top=`pwd`
tar xvfz $src || exit 1
cd httpd-* || exit 1
./configure --prefix=$top --enable-ssl --with-ssl=$ssl --enable-mods-shared=all || exit 1
make || exit 1
make install || exit 1
cd $top || exit 1
rm -rf httpd-* || exit 1