summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorAli Abdallah <aliovx@gmail.com>2017-05-28 10:45:38 +0200
committerAli Abdallah <aliovx@gmail.com>2017-05-28 10:45:38 +0200
commitec9cd77251b0fe7dd2903cd06de9b9cd0b14322f (patch)
tree87a2c88e22cbb5d1b1609c925e5068ac774cc2fa /acinclude.m4
parentac8f0e2c50a44f83a258a41a8d66694d6822d42b (diff)
downloadtumbler-ec9cd77251b0fe7dd2903cd06de9b9cd0b14322f.tar.gz
Use a better description in configure.ac and acinclude.m4 for the new plugin.tumbler-0.1.92
Update version information and copyrights.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 87ff508..fb62e9e 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -300,18 +300,18 @@ AC_MSG_RESULT([$ac_tumbler_xdg_cache])
dnl TUMBLER_DESKTOP_THUMBNAILER()
dnl
-dnl Check whether to build and install the thumbnailers plugin support for .desktop thumbnailers.
+dnl Check whether to build and install the thumbnailers plugin support for loading thumbnailers *.thumbnailer files
dnl
AC_DEFUN([TUMBLER_DESKTOP_THUMBNAILER],
[
-AC_ARG_ENABLE([desktop-thumbnailer], [AC_HELP_STRING([--disable-desktop-thumbnailer], [Don't build the plugin support for .desktop thumbnailers])],
+AC_ARG_ENABLE([desktop-thumbnailer], [AC_HELP_STRING([--disable-desktop-thumbnailer], [Don't build the plugin support for loading thumbnailers *.thumbnailer files])],
[ac_tumbler_desktop_thumbnailer=$enableval], [ac_tumbler_desktop_thumbnailer=yes])
if test x"$ac_tumbler_desktop_thumbnailer" = x"yes"; then
dnl Check for gdk-pixbuf
PKG_CHECK_MODULES([GDK_PIXBUF], [gdk-pixbuf-2.0 >= 2.14], [], [ac_tumbler_desktop_thumbnailer=no])
fi
-AC_MSG_CHECKING([whether to build the plugin support for .desktop thumbnailer])
+AC_MSG_CHECKING([whether to build the plugin support for loading thumbnailers *.thumbnailer files])
AM_CONDITIONAL([TUMBLER_DESKTOP_THUMBNAILER], [test x"$ac_tumbler_desktop_thumbnailer" = x"yes"])
AC_MSG_RESULT([$ac_tumbler_desktop_thumbnailer])
])