[Libreoffice-commits] core.git: configure.ac

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Thu Jun 10 12:07:01 UTC 2021


 configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 0dbe3845bc3583dd6a8e285a8bdfd5b3939bbc6f
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jun 10 09:38:26 2021 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Jun 10 14:06:11 2021 +0200

    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 at redhat.com>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

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])


More information about the Libreoffice-commits mailing list