From 8e02f5ff7a06232f2584ec2d8a55ea4aecb59746 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 10 Jan 2007 04:51:27 +0000 Subject: [PATCH] Fix the directfb cairo test. (#394855, Josselin Mouette) 2007-01-09 Matthias Clasen * configure.in: Fix the directfb cairo test. (#394855, Josselin Mouette) svn path=/trunk/; revision=17125 --- ChangeLog | 5 +++++ configure.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 718976b812..a43b220621 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-01-09 Matthias Clasen + + * configure.in: Fix the directfb cairo test. (#394855, + Josselin Mouette) + 2007-01-09 Behdad Esfahbod * configure.in: Fix comment for --with-included-loaders. That option diff --git a/configure.in b/configure.in index 8ae8a18404..29c4831af8 100644 --- a/configure.in +++ b/configure.in @@ -1391,7 +1391,7 @@ if test "x$gdktarget" = "xdirectfb"; then DIRECTFB_REQUIRED_VERSION=0.9.24 AC_MSG_CHECKING(for DirectFB) - if $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb -a $PKG_CONFIG --exists cairo-directfb ; then + if $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb && $PKG_CONFIG --exists cairo-directfb ; then AC_MSG_RESULT(found) GDK_EXTRA_CFLAGS="`$PKG_CONFIG --cflags cairo-directfb` $GDK_EXTRA_CFLAGS" GDK_EXTRA_LIBS="`$PKG_CONFIG --libs cairo-directfb` $GDK_EXTRA_LIBS"