<!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-03-04 at 09:25 -0800, Dan Nicholson wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE>
On Thu, Mar 4, 2010 at 9:08 AM, Gaetan Nadon &lt;<A HREF="mailto:memsize@videotron.ca">memsize@videotron.ca</A>&gt; wrote:
&gt; On Wed, 2010-03-03 at 20:16 -0800, Dan Nicholson wrote:
&gt;
&gt; Adds an optional parameter to XORG_CHECK_XMLTO to enforce a minimum
&gt; version needed like the asciidoc check.
&gt;
&gt; Signed-off-by: Dan Nicholson &lt;<A HREF="mailto:dbn.lists@gmail.com">dbn.lists@gmail.com</A>&gt;
&gt; ---
&gt;  xorg-macros.m4.in |   16 +++++++++++++++-
&gt;  1 files changed, 15 insertions(+), 1 deletions(-)
&gt;
&gt; diff --git a/xorg-macros.m4.in b/xorg-macros.m4.in
&gt; index e9eecf2..016f169 100644
&gt; --- a/xorg-macros.m4.in
&gt; +++ b/xorg-macros.m4.in
&gt; @@ -304,7 +304,7 @@ AC_SUBST(MAKE_PDF)
&gt;  AC_SUBST(MAKE_HTML)
&gt;  ]) # XORG_CHECK_DOCBOOK
&gt;
&gt; -# XORG_WITH_XMLTO
&gt; +# XORG_WITH_XMLTO([MIN-VERSION])
&gt;  # ----------------
&gt;  # Minimum version: 1.5.0
&gt;  #
&gt; @@ -352,6 +352,20 @@ elif test &quot;x$use_xmlto&quot; = x&quot;no&quot; ; then
&gt;  else
&gt;     AC_MSG_ERROR([--with-xmlto expects 'yes' or 'no'])
&gt;  fi
&gt; +m4_ifval([$1],
&gt; +[if test &quot;$have_xmlto&quot; = yes; then
&gt; +    # scrape the xmlto version
&gt; +    AC_MSG_CHECKING([the xmlto version])
&gt; +    xmlto_version=`$XMLTO --version 2&gt;/dev/null | cut -d' ' -f3`
&gt; +    AC_MSG_RESULT([$xmlto_version])
&gt; +    AS_VERSION_COMPARE([$xmlto_version], [$1],
&gt; +        [if test &quot;x$use_xmlto&quot; = xauto; then
&gt; +            AC_MSG_WARN([xmlto version $xmlto_version found, but $1
&gt; needed])
&gt; +            have_xmlto=no
&gt; +        else
&gt; +            AC_MSG_ERROR([xmlto version $xmlto_version found, but $1
&gt; needed])
&gt; +        fi])
&gt; +fi])
&gt;  AM_CONDITIONAL([HAVE_XMLTO], [test &quot;$have_xmlto&quot; = yes])
&gt;  ]) # XORG_CHECK_XMLTO
&gt;
&gt;
&gt; Tested-by: Gaetan Nadon &lt;<A HREF="mailto:memsize@videotron.ca">memsize@videotron.ca</A>&gt;
&gt;
&gt; If you were considering bumping the version number of the util-macros
&gt; package and releasing it, I'll soon post a patch
&gt; that will require a version bump as well.

Well, I guess we have to bump it to use it in libXi. I don't know if
that's a minor or patch level bump. I guess minor since we're changing
the interface to the macros.

</PRE>
</BLOCKQUOTE>
That would be 1.7.0 then. The feature will work anyway if libXi is configured against a version of util-macros containing the feature. The benefit of bumping the number in both packages is to &quot;enforce&quot; that the feature is used.<BR>
<BR>
<BLOCKQUOTE TYPE=CITE>
<PRE>
--
Dan
</PRE>
</BLOCKQUOTE>
</BODY>
</HTML>