]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/regress-config
Final changes
[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     --with-pid-dir=$1/working \
11     --with-subsys-dir=$1/working \
12     --enable-smartalloc \
13     --disable-readline \
14     --with-working-dir=$1/working \
15     --with-dump-email=$2 \
16     --with-job-email=$2 \
17     $3 \
18     --with-baseport=8101 \
19     --with-tcp-wrappers
20
21 exit 0