summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-06-10 09:38:26 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-06-10 14:06:11 +0200
commit0dbe3845bc3583dd6a8e285a8bdfd5b3939bbc6f (patch)
tree47d0c2bcb0fb917598b5291236507e87f8fe6b96
parent7930a1c5de1dfea458ba52502259b4ff702fd3f4 (diff)
firebird support accidentally defaulted to disabled
since... commit ffc6d564b91692cd9d99a0eb3b1ceaf54f7db89e Date: Tue Jun 1 07:40:12 2021 +0200 configure: Refactor disabling DB drivers Change-Id: I94e5e0aca54e1d6d0355d63b27d8fd73dd433083 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116964 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index e860d4a5f199..fea4aff131cc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10121,7 +10121,7 @@ int fb_api_is_30(void) { return 0; }
fi
ENABLE_FIREBIRD_SDBC=TRUE
AC_DEFINE([ENABLE_FIREBIRD_SDBC],1)
- elif test "$enable_database_connectivity" != yes; then
+ elif test "$enable_database_connectivity" = no; then
AC_MSG_RESULT([none])
elif test "$cross_compiling" = "yes"; then
AC_MSG_RESULT([none])
@@ -10317,7 +10317,7 @@ if test "$with_system_odbc" = "yes" -o '(' "$with_system_headers" = "yes" -a "$w
AC_CHECK_HEADER(sqlext.h, [],
[AC_MSG_ERROR(odbc not found. install odbc)],[])
fi
-elif test "$enable_database_connectivity" != yes; then
+elif test "$enable_database_connectivity" = no; then
AC_MSG_RESULT([none])
else
AC_MSG_RESULT([internal])