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

Rene Engelhard rene at rene-engelhard.de
Wed May 23 18:49:01 UTC 2018


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

New commits:
commit a4c83a91101f35d5b3fa646b42cf95a0d139f05c
Author: Rene Engelhard <rene at rene-engelhard.de>
Date:   Wed May 23 18:10:35 2018 +0200

    actually add AC_MSG_CHECKING/_RESULTs for --enable/disable-postgresql-sdbc
    
    Change-Id: I6b02998db5624960ba78ce8b1b0356601a80fc5e
    Reviewed-on: https://gerrit.libreoffice.org/54721
    Reviewed-by: Rene Engelhard <rene at debian.org>
    Tested-by: Rene Engelhard <rene at debian.org>

diff --git a/configure.ac b/configure.ac
index 1d7770709b32..c42e17bec20f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8514,7 +8514,9 @@ fi
 dnl ===================================================================
 dnl Check for PostgreSQL stuff
 dnl ===================================================================
+AC_MSG_CHECKING([whether to build the PostgreSQL SDBC driver])
 if test "x$enable_postgresql_sdbc" != "xno"; then
+    AC_MSG_RESULT([yes])
     SCPDEFS="$SCPDEFS -DWITH_POSTGRESQL_SDBC"
 
     if test "$with_krb5" = "yes" -a "$enable_openssl" = "no"; then
@@ -8655,6 +8657,8 @@ if test "x$enable_postgresql_sdbc" != "xno"; then
         LIBS=$save_LIBS
     fi
     BUILD_POSTGRESQL_SDBC=TRUE
+else
+    AC_MSG_RESULT([no])
 fi
 AC_SUBST(WITH_KRB5)
 AC_SUBST(WITH_GSSAPI)


More information about the Libreoffice-commits mailing list