From 12393ed0fcd914e242422fb82a552bf27550bd96 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Sun, 15 Jun 2008 14:30:04 +0000 Subject: [PATCH] in the check for xfixes, add "true" as action-if-not-found so it doesn't 2008-06-15 Michael Natterer * configure.in: in the check for xfixes, add "true" as action-if-not-found so it doesn't bail out when xfixes is not found. There seems to be something fishy with the PKG_CHECK_MODULES() macro since adding a simple comma should also count as empty 4th argument. svn path=/trunk/; revision=25959 --- ChangeLog | 10 ++++++++++ configure.in | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4f55d3512d..188c5d528b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2008-06-15 Michael Natterer + + * configure.in: in the check for xfixes, add "true" as + action-if-not-found so it doesn't bail out when xfixes is not + found. + + There seems to be something fishy with the PKG_CHECK_MODULES() + macro since adding a simple comma should also count as empty 4th + argument. + 2008-06-15 Sven Neumann * configure.in: bumped version to 2.5.2. diff --git a/configure.in b/configure.in index f33bfa93cd..3968466aa2 100644 --- a/configure.in +++ b/configure.in @@ -938,7 +938,8 @@ if test "$gdk_target" = x11; then PKG_CHECK_MODULES(XFIXES, xfixes, AC_DEFINE(HAVE_XFIXES, 1, [Define to 1 to if the XFIXES X extension is available]) - LIBSCREENSHOT="$LIBSCREENSHOT $XFIXES_LIBS") + LIBSCREENSHOT="$LIBSCREENSHOT $XFIXES_LIBS", + true) else enable_gimp_remote="no (building for $gdk_target)"