]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/regress-config
Update win32 readme
[bacula/bacula] / regress / scripts / regress-config
1 #!/bin/sh
2 #
3 # This is the configuration script for regression testing
4 #
5
6 . ${1}/config
7
8 CFLAGS="-g -O2 -Wall" \
9  ./configure \
10     --sbindir=${1}/bin \
11     --sysconfdir=${1}/bin \
12     --mandir=${1}/bin \
13     --with-pid-dir=${1}/working \
14     --with-subsys-dir=${1}/working \
15     --enable-smartalloc \
16     --disable-readline \
17     --with-working-dir=${1}/working \
18     --with-archivedir=${1}/tmp \
19     --with-dump-email=${EMAIL} \
20     --with-job-email=${EMAIL} \
21     --with-smtp-host=${SMTP_HOST} \
22     --with-db-name=regress \
23     --with-db-user=regress \
24     ${OPENSSL} \
25     ${TCPWRAPPERS} \
26     ${WHICHDB} \
27     --with-baseport=8101
28
29 exit 0