<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.26.0">
</HEAD>
<BODY>
On Tue, 2009-12-01 at 16:45 +1000, Peter Hutterer wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE>
On Sat, Nov 28, 2009 at 09:50:52PM -0500, Gaetan Nadon wrote:
&gt; From 5570d7b274e6b3f369c7d3810a9f88fa9ffe2540 Mon Sep 17 00:00:00 2001
&gt; From: Gaetan Nadon &lt;<A HREF="mailto:memsize@videotron.ca">memsize@videotron.ca</A>&gt;
&gt; Date: Sat, 28 Nov 2009 21:32:47 -0500
&gt; Subject: [PATCH] configure.ac: error while checking for XDMXCONFIG_DEP
&gt; 
&gt; Introduced in commit 9998105a387e0294054502331a56e1e020cd93e4
&gt; The replacement third parameters to PKG_CHECK_MODULES([DMXMODULES]
&gt; was not quoted.
&gt; ---
&gt;  configure.ac |   14 +++++++++-----
&gt;  1 files changed, 9 insertions(+), 5 deletions(-)
&gt; 
&gt; diff --git a/configure.ac b/configure.ac
&gt; index 8500db4..1038734 100644
&gt; --- a/configure.ac
&gt; +++ b/configure.ac
&gt; @@ -1808,11 +1808,15 @@ AM_CONDITIONAL(XQUARTZ_SPARKLE, [test &quot;x$XQUARTZ_SPARKLE&quot; != &quot;xno&quot;])
&gt;  AM_CONDITIONAL(STANDALONE_XPBPROXY, [test &quot;x$STANDALONE_XPBPROXY&quot; = xyes])
&gt;  
&gt;  dnl DMX DDX
&gt; -PKG_CHECK_MODULES([DMXMODULES],
&gt; -    [xmuu $LIBXEXT x11 xrender xfixes xfont $LIBXI $DMXPROTO xau $XDMCP_MODULES],
&gt; -    PKG_CHECK_MODULES([XDMXCONFIG_DEP], [xaw7 xmu xt xpm x11], [have_dmx=yes],
&gt; -                      [have_dmx=no]),
&gt; -    [have_dmx=no])
&gt; +PKG_CHECK_MODULES(
&gt; +        [DMXMODULES],
&gt; +        [xmuu $LIBXEXT x11 xrender xfixes xfont $LIBXI $DMXPROTO xau $XDMCP_MODULES],
&gt; +        [PKG_CHECK_MODULES(
&gt; +                [XDMXCONFIG_DEP],
&gt; +                [xaw7 xmu xt xpm x11],
&gt; +                [have_dmx=yes],
&gt; +                [have_dmx=no])],
&gt; +        [have_dmx=no])
&gt;  AC_MSG_CHECKING([whether to build Xdmx DDX])
&gt;  if test &quot;x$DMX&quot; = xauto; then
&gt;          DMX=&quot;$have_dmx&quot;
&gt; -- 
&gt; 1.6.0.4
 
Gaetan, please add your signed-off-by to this patch, I'll send a new pull
request to keith once we get it. Thanks.

</PRE>
</BLOCKQUOTE>
I have signed-off and added the tags obtained from the reviewers, thanks to Dan and Julien. Now I think I understand how it works, let me know if that's not the case. I noticed the problem is in both master and 1.7.2. The patch was created in 1.7.2. Don't know if that matters.<BR>
<BR>
<BLOCKQUOTE TYPE=CITE>
<PRE>
Cheers,
  Peter
</PRE>
</BLOCKQUOTE>
</BODY>
</HTML>