]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/regress-config
spelling correction: windows 2003 instead of 3000 in vss chapter
[bacula/bacula] / regress / scripts / regress-config
1 #!/bin/sh
2 #
3 # This is the configuration script for regression testing
4 #
5
6 CFLAGS="-g -O2 -Wall" \
7  ./configure \
8     --sbindir=$1/bin \
9     --sysconfdir=$1/bin \
10     --mandir=$1/bin \
11     --with-pid-dir=$1/working \
12     --with-subsys-dir=$1/working \
13     --enable-smartalloc \
14     --disable-readline \
15     --with-working-dir=$1/working \
16     --with-dump-email=$2 \
17     --with-job-email=$2 \
18     $3 \
19     --with-baseport=8101 \
20     $4
21
22 exit 0