[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - configure.ac

Deve (via logerrit) logerrit at kemper.freedesktop.org
Sun Sep 22 07:53:58 UTC 2019


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

New commits:
commit c2d39ea4288f14c0f9cc16320bd34b3199e907ff
Author:     Deve <deveee at gmail.com>
AuthorDate: Wed Jan 9 00:10:27 2019 +0100
Commit:     Andras Timar <andras.timar at collabora.com>
CommitDate: Sun Sep 22 09:53:24 2019 +0200

    Don't build dconf on Android and iOS.
    
    Without that modification, it finds dconf in linux system and then compilation fails when it tries to build configmgr/source/dconf.cxx because dconf headers are not found in Android NDK.
    
    Change-Id: I25ab7f1ce66ed491f08a526e462e00957135b0c2
    Reviewed-on: https://gerrit.libreoffice.org/65987
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <Michael.Stahl at cib.de>
    (cherry picked from commit b534c1ef4ba439cc1b0f566ed9e3a3275a2e8e5e)
    Reviewed-on: https://gerrit.libreoffice.org/79342
    Reviewed-by: Andras Timar <andras.timar at collabora.com>
    Tested-by: Andras Timar <andras.timar at collabora.com>

diff --git a/configure.ac b/configure.ac
index 189f0e36a6b0..0ecaa54ff976 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10512,7 +10512,7 @@ dnl =================================================
 dnl Check whether to build with dconf support.
 dnl =================================================
 
-if test "$enable_dconf" != no; then
+if test $_os != Android -a $_os != iOS -a "$enable_dconf" != no; then
     PKG_CHECK_MODULES([DCONF], [dconf >= 0.15.2], [], [
         if test "$enable_dconf" = yes; then
             AC_MSG_ERROR([dconf not found])
@@ -10521,7 +10521,7 @@ if test "$enable_dconf" != no; then
         fi])
 fi
 AC_MSG_CHECKING([whether to enable dconf])
-if test "$enable_dconf" = no; then
+if test $_os = Android -o $_os = iOS -o "$enable_dconf" = no; then
     DCONF_CFLAGS=
     DCONF_LIBS=
     ENABLE_DCONF=


More information about the Libreoffice-commits mailing list