From 7904a06c69ed8cc1a4cd23e07304cdcdb23bb700 Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Wed, 18 Sep 2013 13:39:57 +0100 Subject: =?UTF-8?q?configure=20(decoders):=20remove=20extraneous=20?= =?UTF-8?q?=E2=80=98not=20found=E2=80=99=20reports.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- m4/decoders.m4 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'm4') diff --git a/m4/decoders.m4 b/m4/decoders.m4 index b5c977022..fbea178c3 100644 --- a/m4/decoders.m4 +++ b/m4/decoders.m4 @@ -138,16 +138,16 @@ AC_DEFUN([XINE_DECODER_PLUGINS], [ [AS_HELP_STRING([--with-imagemagick], [Enable ImageMagick image decoder support (default: enabled)])], [test x"$withval" != x"no" && with_imagemagick="yes"]) if test x"$with_imagemagick" != x"no"; then - PKG_CHECK_MODULES([WAND], [Wand], [have_imagemagick=yes], [AC_MSG_RESULT([no]); have_imagemagick=no]) + PKG_CHECK_MODULES([WAND], [Wand], [have_imagemagick=yes], [have_imagemagick=no]) if test "x$have_imagemagick" = 'xno'; then - PKG_CHECK_MODULES([MAGICKWAND], [MagickWand], [have_imagemagick=yes], [AC_MSG_RESULT([no]); have_imagemagick=no]) + PKG_CHECK_MODULES([MAGICKWAND], [MagickWand], [have_imagemagick=yes], [have_imagemagick=no]) dnl Avoid $(WAND_FLAGS) $(MAGICKWAND_FLAGS) ... WAND_CFLAGS="$MAGICKWAND_CFLAGS" WAND_LIBS="$MAGICKWAND_LIBS" fi if test "x$have_imagemagick" = 'xno'; then - PKG_CHECK_MODULES([GRAPHICSMAGICK], [ImageMagick], [have_imagemagick=yes], [AC_MSG_RESULT([no]); have_imagemagick=no]) - PKG_CHECK_MODULES([GRAPHICSMAGICKWAND], [GraphicsMagickWand], [have_imagemagick=yes], [AC_MSG_RESULT([no]); have_imagemagick=no]) + PKG_CHECK_MODULES([GRAPHICSMAGICK], [ImageMagick], [have_imagemagick=yes], [have_imagemagick=no]) + PKG_CHECK_MODULES([GRAPHICSMAGICKWAND], [GraphicsMagickWand], [have_imagemagick=yes], [have_imagemagick=no]) dnl The following assignments are safe, since they include dnl the flags for plain GraphicsMagick WAND_CFLAGS="$GRAPHICSMAGICKWAND_CFLAGS" -- cgit v1.2.3