From: Kern Sibbald Date: Tue, 25 Dec 2012 16:40:51 +0000 (+0100) Subject: Add bsrdir and logdir to regress-config X-Git-Tag: Release-5.2.13~44 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ab85e8592f4efaaa716b0bbcac78d27159246749;p=bacula%2Fbacula Add bsrdir and logdir to regress-config --- diff --git a/regress/scripts/regress-config b/regress/scripts/regress-config new file mode 100755 index 0000000000..3a59c51565 --- /dev/null +++ b/regress/scripts/regress-config @@ -0,0 +1,49 @@ +#!/bin/sh +# +# This is the configuration script for regression testing +# + +. ${1}/config +if test "x" = "x"; then + PASSWD= +else + PASSWD="--with-db-password=" +fi + +if [ -z "${CFLAGS}" ]; then + CFLAGS="-g -O2 -Wall" + export CFLAGS +fi + +./configure \ + --sbindir=${1}/bin \ + --libdir=${1}/bin \ + --sysconfdir=${1}/bin \ + --mandir=${1}/bin \ + --docdir=${1}/bin/html \ + --htmldir=${1}/bin/html \ + --with-logdir=${1}/working \ + --with-bsrdir=${1}/working \ + --with-pid-dir=${1}/working \ + --with-subsys-dir=${1}/working \ + --with-plugindir=${1}/bin/plugins \ + --enable-smartalloc \ + --enable-lockmgr \ + --disable-readline \ + --with-working-dir=${1}/working \ + --with-archivedir=${1}/tmp \ + --with-dump-email=${EMAIL} \ + --with-job-email=${EMAIL} \ + --with-smtp-host=${SMTP_HOST} \ + --with-db-name=regress \ + --with-db-user=regress \ + ${PASSWD} \ + ${OPENSSL} \ + ${TCPWRAPPERS} \ + ${WHICHDB} \ + --with-baseport=${BASEPORT} + +LD_LIBRARY_PATH=${1}/bin:${LD_LIBRARY_PATH} +export LD_LIBRARY_PATH + +exit 0