<!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 Thu, 2010-06-03 at 08:47 +1000, Peter Hutterer wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE>
On Wed, Jun 02, 2010 at 03:30:18PM -0400, Gaetan Nadon wrote:
&gt; Unlike other macros AC_PROG_YACC sets the YACC variable to &quot;yacc&quot;
&gt; as a last resort, even if no programs have been found. Improve error
&gt; checking by issuing an error message if yacc is not found. The module
&gt; cannot be build anyway.
&gt; 
&gt; Reported-by: Peter Hutterer &lt;<A HREF="mailto:peter.hutterer@who-t.net">peter.hutterer@who-t.net</A>&gt;
&gt; Signed-off-by: Gaetan Nadon &lt;<A HREF="mailto:memsize@videotron.ca">memsize@videotron.ca</A>&gt;
&gt; ---
&gt;  configure.ac |    2 ++
&gt;  1 files changed, 2 insertions(+), 0 deletions(-)
&gt; 
&gt; diff --git a/configure.ac b/configure.ac
&gt; index 4c86fcd..315910d 100644
&gt; --- a/configure.ac
&gt; +++ b/configure.ac
&gt; @@ -35,6 +35,8 @@ AM_CONFIG_HEADER(config.h)
&gt;  
&gt;  AC_PROG_CC
&gt;  AC_PROG_YACC
&gt; +AC_PATH_PROG([YACC_INST], $YACC)
&gt; +test -z $YACC_INST &amp;&amp; AC_MSG_ERROR([yacc not found - unable to compile xkbparse.y])

should $YACC_INST be in quotes?

</PRE>
</BLOCKQUOTE>
It should, all the other ones are. <BR>
<BR>
I add the 4 other modules using AC_PROG_YACC on my TODO.<BR>
<BR>
<BLOCKQUOTE TYPE=CITE>
<PRE>
Reviewed-by: Peter Hutterer &lt;<A HREF="mailto:peter.hutterer@who-t.net">peter.hutterer@who-t.net</A>&gt;

&gt;  AC_PROG_INSTALL

Cheers,
  Peter
</PRE>
</BLOCKQUOTE>
</BODY>
</HTML>