]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/regress-config
Update
[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     --with-smtp-host=$5 \
19     $3 \
20     --with-baseport=8101 \
21     $4 \
22     $6
23
24 exit 0