From 025f6441632acbfafa4d2f15714d2d60e6b40809 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sun, 21 Jan 2007 19:31:49 +0000 Subject: Add AC_MSG_RESULT([no]) to the failed branch of PKG_CHECK_MODULES tests to 2007-01-21 Tor Lillqvist * configure.in: Add AC_MSG_RESULT([no]) to the failed branch of PKG_CHECK_MODULES tests to make the output from configure cleaner. svn path=/trunk/; revision=2177 --- ChangeLog | 6 ++++++ configure.in | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 284a59c2..6516d9a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-01-21 Tor Lillqvist + + * configure.in: Add AC_MSG_RESULT([no]) to the failed branch of + PKG_CHECK_MODULES tests to make the output from configure + cleaner. + 2007-01-21 Behdad Esfahbod Bug 398238 – pangorc file missing from tests directory diff --git a/configure.in b/configure.in index 29e96d72..5ab86e9f 100644 --- a/configure.in +++ b/configure.in @@ -220,7 +220,7 @@ have_xft=false # # Check for fontconfig # -PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 1.0.1, have_fontconfig=true, :) +PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 1.0.1, have_fontconfig=true, AC_MSG_RESULT([no])) if $have_fontconfig ; then # @@ -250,7 +250,7 @@ if $have_fontconfig ; then # Checks for Xft/XRender # if $have_x && $have_freetype ; then - PKG_CHECK_MODULES(XFT, xft >= 2.0.0, have_xft=true, :) + PKG_CHECK_MODULES(XFT, xft >= 2.0.0, have_xft=true, AC_MSG_RESULT([no])) if $have_xft ; then AC_DEFINE(HAVE_XFT, 1, [Have Xft library]) fi @@ -334,7 +334,7 @@ have_cairo_freetype=false have_cairo_win32=false have_cairo_atsui=false -PKG_CHECK_MODULES(CAIRO, cairo >= 1.2.2, have_cairo=true, :) +PKG_CHECK_MODULES(CAIRO, cairo >= 1.2.2, have_cairo=true, AC_MSG_RESULT([no])) if $have_cairo ; then pango_save_ldflags=$LDFLAGS @@ -433,7 +433,7 @@ fi # have_libthai=false LIBTHAI_REQUIRED_VERSION=0.1.7 -PKG_CHECK_MODULES(LIBTHAI, libthai >= $LIBTHAI_REQUIRED_VERSION, have_libthai=true, :) +PKG_CHECK_MODULES(LIBTHAI, libthai >= $LIBTHAI_REQUIRED_VERSION, have_libthai=true, AC_MSG_RESULT([no])) # # Modules to build -- cgit v1.2.1