From 9b44d9520aeb0c4cd43041d6d3d5d26041e1633c Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Wed, 11 Jun 2008 16:00:35 +0000 Subject: [PATCH] Commit missing file for previous patch git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7128 91ce42f0-d328-0410-95d8-f526ca767f89 --- regress/scripts/regress-config.in | 58 +++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 regress/scripts/regress-config.in diff --git a/regress/scripts/regress-config.in b/regress/scripts/regress-config.in new file mode 100644 index 0000000000..db548925b3 --- /dev/null +++ b/regress/scripts/regress-config.in @@ -0,0 +1,58 @@ +#!/bin/sh +# +# This is the configuration script for regression testing +# + +. ${1}/config + +CFLAGS="-g -O2 -Wall" \ + ./configure \ + --sbindir=${1}/bin \ + --sysconfdir=${1}/bin \ + --mandir=${1}/bin \ + --with-pid-dir=${1}/working \ + --with-subsys-dir=${1}/working \ + --enable-smartalloc \ + --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=@db_name@ \ + --with-db-user=@db_user@ \ + ${OPENSSL} \ + ${TCPWRAPPERS} \ + ${WHICHDB} \ + --with-baseport=${BASEPORT} + +exit 0 +#!/bin/sh +# +# This is the configuration script for regression testing +# + +. ${1}/config + +CFLAGS="-g -O2 -Wall" \ + ./configure \ + --sbindir=${1}/bin \ + --sysconfdir=${1}/bin \ + --mandir=${1}/bin \ + --with-pid-dir=${1}/working \ + --with-subsys-dir=${1}/working \ + --enable-smartalloc \ + --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=@db_name@ \ + --with-db-user=@db_user@ \ + ${OPENSSL} \ + ${TCPWRAPPERS} \ + ${WHICHDB} \ + --with-baseport=${BASEPORT} + +exit 0 -- 2.39.5