summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorOlivier Duchateau <duchateau.olivier@gmail.com>2013-01-13 11:44:21 +0100
committerNick Schermer <nick@xfce.org>2013-01-13 11:44:21 +0100
commit543e94fe211788d20650b4f441cd8cd6dea302cb (patch)
treed03a7b2d028d41a8db078d0c083c0f1411542f75 /acinclude.m4
parentfe9ab31b4c4ed7e9f90505758345842591db2fb1 (diff)
downloadtumbler-543e94fe211788d20650b4f441cd8cd6dea302cb.tar.gz
Fix configure flag for cover thumbnailer (bug #9751).
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 9afa9c9..66e79d1 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -250,13 +250,13 @@ dnl Check whether to build and install the Open Movie Database thumbnailer plugi
dnl
AC_DEFUN([TUMBLER_COVER_THUMBNAILER],
[
-AC_ARG_ENABLE([pixbuf-thumbnailer], [AC_HELP_STRING([--disable-cover-thumbnailer], [Don't build the Cover thumbnailer plugin])],
+AC_ARG_ENABLE([cover-thumbnailer], [AC_HELP_STRING([--disable-cover-thumbnailer], [Don't build the Cover thumbnailer plugin])],
[ac_tumbler_cover_thumbnailer=$enableval], [ac_tumbler_cover_thumbnailer=yes])
if test x"$ac_tumbler_cover_thumbnailer" = x"yes"; then
dnl Check for gdk-pixbuf
PKG_CHECK_MODULES([GDK_PIXBUF], [gdk-pixbuf-2.0 >= 2.14],
[
- dnl CHeck for curl
+ dnl Check for curl
PKG_CHECK_MODULES([CURL], [libcurl], [], [ac_tumbler_cover_thumbnailer=no])
], [ac_tumbler_cover_thumbnailer=no])
fi