]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/scripts/regress-config.in
Make out of freespace non-fatal for removable devices -- i.e. behaves like tape
[bacula/bacula] / regress / scripts / regress-config.in
index 73e78e86fdbf8935153f0c5debd8e611caab0169..6e9f6fb3d91b0bea5f5d103505118ac74531a943 100755 (executable)
@@ -1,23 +1,38 @@
 #!/bin/sh
 #
+# Copyright (C) 2000-2017 Kern Sibbald
+# License: BSD 2-Clause; see file LICENSE-FOSS
+#
 # This is the configuration script for regression testing
 #
 
+set -e
+
 . ${1}/config
 if test "x@db_password@" = "x"; then
   PASSWD=
 else
-  PASSWO="--with-db-password=\"@db_password@\""
+  PASSWD="--with-db-password=@db_password@"
 fi
 
-CFLAGS="-g -O2 -Wall" \
- ./configure \
+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-pid-dir=${1}/working \
     --with-subsys-dir=${1}/working \
+    --with-plugindir=${1}/bin/plugins \
+    --with-logdir=${1}/working \
     --enable-smartalloc \
+    --enable-lockmgr \
     --disable-readline \
     --with-working-dir=${1}/working \
     --with-archivedir=${1}/tmp \
@@ -30,6 +45,10 @@ CFLAGS="-g -O2 -Wall" \
     ${OPENSSL} \
     ${TCPWRAPPERS} \
     ${WHICHDB} \
+    ${CONFIGURE_EXTRA} \
     --with-baseport=${BASEPORT}
 
+LD_LIBRARY_PATH=${1}/bin:${LD_LIBRARY_PATH}
+export LD_LIBRARY_PATH
+
 exit 0