Description: Disable the libxml2 version check
 The check is broken (dotted version to integer conversion is wrong).
 .
 Since the Debian package has versionned dependency on a fresh version
 of libxml2-dev, the version check isn't needed. And probably libxml2
 older than version 2.6.16 aren't in the wild anymore.
Author: Al Nikolov <clown@debian.org>
Last-Update: 2010-01-17
Index: microdc2-0.15.6/configure.ac
===================================================================
--- microdc2-0.15.6.orig/configure.ac	2010-01-17 04:45:33.000000000 +0000
+++ microdc2-0.15.6/configure.ac	2010-01-17 04:44:54.000000000 +0000
@@ -47,12 +47,12 @@
 #AH_TEMPLATE([XML_SAVE_FORMAT], [1], [Define if libxml2 has no such option for xmlSave- functions])
 AC_PATH_PROG(XML_CONFIG, xml2-config)
 AC_PATH_PROG(TR, tr)
-if test -n "$XML_CONFIG" && test -n "$TR"; then
-  LIBXML2_VERSION=`$XML_CONFIG --version | $TR -d "."`
-  if test $LIBXML2_VERSION -eq 2616; then
-    AC_DEFINE([XML_SAVE_FORMAT], [1], [The libxml2 version 2.6.16 has no such option defined in the library headers])
-  fi
-  if test $LIBXML2_VERSION -ge 2616; then
+#if test -n "$XML_CONFIG" && test -n "$TR"; then
+#  LIBXML2_VERSION=`$XML_CONFIG --version | $TR -d "."`
+#  if test $LIBXML2_VERSION -eq 2616; then
+#    AC_DEFINE([XML_SAVE_FORMAT], [1], [The libxml2 version 2.6.16 has no such option defined in the library headers])
+#  fi
+#  if test $LIBXML2_VERSION -ge 2616; then
     AC_DEFINE([HAVE_LIBXML2])
     LIBXML2_LIBS="`$XML_CONFIG --libs`"
     LIBXML2_CFLAGS="`$XML_CONFIG --cflags`"
@@ -60,10 +60,10 @@
     AC_SUBST(LIBXML2_CFLAGS)
 #    LIBS="$LIBS $LIBXML2_LIBS"
 #    CFLAGS="$CFLAGS $LIBXML2_CFLAGS"
-  else
-    AC_MSG_WARN([XML libxml2 library version 2.6.16 or later is required to support XML filelists])
-  fi
-fi
+#  else
+#    AC_MSG_WARN([XML libxml2 library version 2.6.16 or later is required to support XML filelists])
+#  fi
+#fi
 
 # Checks for header files
 
