summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorStephan Arts <stephan@xfce.org>2008-11-03 22:01:58 +0000
committerStephan Arts <stephan@xfce.org>2008-11-03 22:01:58 +0000
commit0f6f75e5dfad73657fc806af2137fff619b22b09 (patch)
tree2a8743b10931f6b4b5d7c73911bc516890edbfe0 /acinclude.m4
parent9c17f311eaa52666ffa0a59b2922c80779bbcfff (diff)
downloadthunar-0f6f75e5dfad73657fc806af2137fff619b22b09.tar.gz
- Applied patch from Mike Massonnet to use xfconf-query instead of
xfconf for setting the xfce desktop. - Added support for gconftool to set the gnome desktop (detecting nautilus is still flawed) (Old svn revision: 28600)
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m410
1 files changed, 9 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index bd13e051..49afe088 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -102,7 +102,15 @@ AC_ARG_ENABLE([wallpaper-plugin], AC_HELP_STRING([--disable-wallpaper-plugin], [
AC_MSG_CHECKING([whether to build the thunar-wallpaper plugin])
AM_CONDITIONAL([THUNAR_PLUGIN_WALLPAPER], [test x"$ac_bm_thunar_plugin_wallpaper" = x"yes"])
AC_MSG_RESULT([$ac_bm_thunar_plugin_wallpaper])
-XDT_CHECK_OPTIONAL_PACKAGE([XFCONF], [libxfconf-0], [4.5.91], [xfconf], [Xfconf support])
+if test x"$ac_bm_thunar_plugin_wallpaper" = x"yes"; then
+ AC_CHECK_PROG([xfconf_query_found], [xfconf-query], [yes], [no])
+ if test x"$xfconf_query_found" = x"no"; then
+ echo "***"
+ echo "*** xfconf-query was not found on your system."
+ echo "*** The wallpaper won't work without it installed."
+ echo "***"
+ fi
+fi
])