summaryrefslogtreecommitdiff
path: root/configure.ac.in
diff options
context:
space:
mode:
authorRomain Bouvier <skunnyk@alteroot.org>2019-04-16 22:29:26 +0200
committerRomain Bouvier <skunnyk@alteroot.org>2019-04-16 22:36:11 +0200
commit6f11cc65a2213f424728b5a0d25b1b63c19e773e (patch)
treef9a93636d78549670f1b63967cf1c270c833bc89 /configure.ac.in
parentbd2b1e4980439cf7a2b06c0075311bd7262c90cb (diff)
downloadxfconf-6f11cc65a2213f424728b5a0d25b1b63c19e773e.tar.gz
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
Diffstat (limited to 'configure.ac.in')
-rw-r--r--configure.ac.in9
1 files 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@cornell.edu>
+dnl Copyright (c) 2011-2019 Xfce Development Team <xfce4-dev@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])