]> 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 if test "x${CONFIG_SHELL}" != "x"; then
7     CONFIG_SHELL=/bin/sh
8 fi
9
10 CFLAGS="-g -O2 -Wall" \
11  ./configure \
12     --sbindir=$1/bin \
13     --sysconfdir=$1/bin \
14     --mandir=$1/bin \
15     --with-pid-dir=$1/working \
16     --with-subsys-dir=$1/working \
17     --enable-smartalloc \
18     --disable-readline \
19     --with-working-dir=$1/working \
20     --with-dump-email=$2 \
21     --with-job-email=$2 \
22     --with-smtp-host=$5 \
23     --with-db-name=regress \
24     --with-db-user=regress \
25     $3 \
26     --with-baseport=8101 \
27     $4 \
28     $6
29
30 exit 0