[Xfce4-commits] [xfce/xfconf] 01/01: Bug #15122: xfconf: disable gsettings backend by default

noreply at xfce.org noreply at xfce.org
Tue Apr 16 22:39:02 CEST 2019


This is an automated email from the git hooks/post-receive script.

s   k   u   n   n   y   k       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository xfce/xfconf.

commit 6f11cc65a2213f424728b5a0d25b1b63c19e773e
Author: Romain Bouvier <skunnyk at alteroot.org>
Date:   Tue Apr 16 22:29:26 2019 +0200

    Bug #15122: xfconf: disable gsettings backend by default
    
    - Introduced in 4.13.6, it is enabled by default. We have multiple bugs
    reports about this feature and build failures on *BSD systems when using
    g-ir-compiler on headless build systems
    - Disable it by default until corrects fixes. See also #14789
    - Also update configure.ac.in a bit
---
 configure.ac.in | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 18e66b5..bc5bcae 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -3,6 +3,7 @@ dnl
 dnl xfconf - dbus-based configuration daemon and library for xfce
 dnl
 dnl Copyright (c) 2007-2011 Brian Tarricone <bjt23 at cornell.edu>
+dnl Copyright (c) 2011-2019 Xfce Development Team <xfce4-dev at xfce.org>
 dnl
 
 dnl version info
@@ -24,10 +25,10 @@ AC_CONFIG_MACRO_DIRS([m4])
 AC_PREREQ([2.50])
 
 dnl init automake
-AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar no-dist-gzip])
+AM_INIT_AUTOMAKE([1.11 dist-bzip2 tar-ustar no-dist-gzip])
 AC_CONFIG_HEADERS([config.h])
 AM_MAINTAINER_MODE
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+AM_SILENT_RULES([yes])
 
 dnl set helper path prefix
 AC_ARG_WITH([helper-path-prefix],
@@ -182,8 +183,8 @@ if test "x$xfconf_backend_perchannel_xml" = "xyes"; then
 fi
 
 dnl check for GSettings backend support
-AC_ARG_ENABLE([gsettings_backend], AC_HELP_STRING([--disable-gsettings-backend], [Don't build GSettings backend module]),
-  [ac_gsettings_backend=$enableval], [ac_gsettings_backend=yes])
+AC_ARG_ENABLE([gsettings_backend], AC_HELP_STRING([--enable-gsettings-backend], [Build GSettings backend module]),
+  [ac_gsettings_backend=$enableval], [ac_gsettings_backend=no])
 AC_MSG_CHECKING([whether to build the GSettings backend module])
 AM_CONDITIONAL([XFCONF_ENABLE_GSETTINGS_BACKEND], [test x"$ac_gsettings_backend" = x"yes"])
 AC_MSG_RESULT([$ac_gsettings_backend])

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list