diff options
author | Stefano Karapetsas <[email protected]> | 2014-11-03 10:18:22 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-11-03 10:18:22 +0100 |
commit | a4fa7f2644ec54eb624878d42a92b737403ec583 (patch) | |
tree | 0cfdebf3a8d2aca3e59a8164d0c1b30a702271a0 /configure.ac | |
parent | b1611e2ef6d54c86053d6009e89119d3b40fb2fe (diff) | |
download | caja-extensions-a4fa7f2644ec54eb624878d42a92b737403ec583.tar.bz2 caja-extensions-a4fa7f2644ec54eb624878d42a92b737403ec583.tar.xz |
Add 'Set as wallpaper' extension
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 253609b..9325b84 100644 --- a/configure.ac +++ b/configure.ac @@ -295,6 +295,14 @@ AC_ARG_ENABLE([gksu], AM_CONDITIONAL(ENABLE_GKSU, test x"$enable_gksu" = "xyes") +# gksu extenstion +AC_ARG_ENABLE([wallpaper], + AS_HELP_STRING([--enable-wallpaper], [Enable set as wallpaper plugin]), + [enable_wallpaper=$enableval], + [enable_wallpaper=yes]) + +AM_CONDITIONAL(ENABLE_WALLPAPER, test x"$enable_wallpaper" = "xyes") + # Get caja extensions directory AC_ARG_WITH(cajadir, AS_HELP_STRING([--with-cajadir=DIR],[Installation path for Caja extension @<:@auto@:>@]), @@ -330,6 +338,7 @@ AC_OUTPUT([ sendto/plugins/removable-devices/Makefile sendto/plugins/upnp/Makefile share/Makefile + wallpaper/Makefile po/Makefile.in ]) @@ -346,4 +355,5 @@ Plugins to be build: Sendto: $enable_sendto Share: $enable_share Gksu: $enable_gksu + Wallpaper: $enable_wallpaper " |