]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak fix backward test in batch insert configure test
authorKern Sibbald <kern@sibbald.com>
Thu, 12 Aug 2010 08:18:39 +0000 (10:18 +0200)
committerKern Sibbald <kern@sibbald.com>
Sun, 29 Aug 2010 13:39:22 +0000 (15:39 +0200)
bacula/autoconf/configure.in

index b15ec2315279247a092c84189765639d024f93eb..a79d9013fa989cc9e6746588c8c368349f90272e 100644 (file)
@@ -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