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-Url: https://git.sur5r.net/?a=commitdiff_plain;h=316efbd8ce4b42703ace2713798fa1948dba4196;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 b15ec23152..a79d9013fa 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