From 99de4c03aefca87fbd0f31724bd41aa352b5cd00 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Thu, 12 Aug 2010 10:18:39 +0200 Subject: [PATCH] Tweak fix backward test in batch insert configure test --- bacula/autoconf/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index 28e31a9854..6ad27f23f4 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -1757,7 +1757,7 @@ dnl Check if postgresql can support batch mode if test x$DB_TYPE = xpostgresql; then AC_CHECK_LIB(pq, PQisthreadsafe, AC_DEFINE(HAVE_PQISTHREADSAFE, 1, [Set if have PQisthreadsafe])) AC_CHECK_LIB(pq, PQputCopyData, AC_DEFINE(HAVE_PQ_COPY, 1, [Set if have PQputCopyData])) - test "x$ac_cv_lib_pq_PQputCopyData" != "xyes" + test "x$ac_cv_lib_pq_PQputCopyData" = "xyes" pkg=$? if test $pkg = 0; then AC_ARG_ENABLE(batch-insert, @@ -1781,7 +1781,7 @@ if test x$DB_TYPE = xdbi; then if test $DB_PROG = postgresql; then AC_CHECK_LIB(pq, PQisthreadsafe, AC_DEFINE(HAVE_PQISTHREADSAFE)) AC_CHECK_LIB(pq, PQputCopyData, AC_DEFINE(HAVE_PQ_COPY)) - test "x$ac_cv_lib_pq_PQputCopyData" != "xyes" + test "x$ac_cv_lib_pq_PQputCopyData" = "xyes" pkg=$? fi -- 2.39.5