From: Kern Sibbald Date: Thu, 12 Aug 2010 08:18:39 +0000 (+0200) Subject: Tweak fix backward test in batch insert configure test X-Git-Tag: Release-7.0.0~1609 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4984b7c3b3079b9960ad9a86606ac25a8944eb5c;p=bacula%2Fbacula Tweak fix backward test in batch insert configure test --- 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