3 # PSPP - a program for statistical analysis.
4 # Copyright (C) 2017 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 # Variables used internally by the testsuite.
24 WITH_PERL_MODULE='@WITH_PERL_MODULE@'
26 PACKAGE_STRING='@PACKAGE_STRING@'
27 PACKAGE_BUGREPORT='@PACKAGE_BUGREPORT@'
30 if echo | $XMLLINT - >/dev/null 2>&1; then
36 PSQL_SUPPORT='@PSQL_SUPPORT@'
37 if test "$PSQL_SUPPORT" = yes; then
38 : ${PG_CONFIG:='@PG_CONFIG@'}
39 : ${PG_DBASE:=pspptest}
41 : ${PG_PATH:=`$PG_CONFIG --bindir`}
43 # PSQL_SUPPORT indicates that PSPP was built against the PostgreSQL client
44 # library, but it does not mean that the PostgreSQL utilities are
45 # installed. So check for them and turn off PSQL_SUPPORT if they are not
47 if (PATH=$PG_PATH:$PATH; export PATH; initdb --version) >/dev/null 2>&1
55 # Variables used by programs invoked by the testsuite.
56 CHARSETALIASDIR="$abs_top_builddir/gl"
57 export CHARSETALIASDIR
62 WINEPREFIX=$HOME/.wine # Work around the following kludge to keep wine happy
66 HOME=/nonexistent # Kluge to make PSPP ignore $HOME/.pspprc.
69 # Avoids error messages during tests if $TERM is set to an unknown terminal.
72 pspp_diff=`which diff`
73 if test X"$RUNNER" = Xwine; then