From 8b7909ebe26b475157ac788fe3df90d9c43f605b Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Tue, 25 Dec 2012 17:40:51 +0100 Subject: [PATCH] Add bsrdir and logdir to regress-config --- regress/scripts/regress-config | 49 ++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100755 regress/scripts/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 -- 2.39.2