Make libxml2 the configuration default XML parser (so it should get a bit of test-driving).
Separate micro-commit so it's an easy distinction we can confine to trunk even if the new code makes it into a release as an option before it's well-tested. Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/57fcef17 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/57fcef17 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/57fcef17 Branch: refs/heads/master Commit: 57fcef17e1ef5020d475d3c8c71d71c6a7c7c337 Parents: 2184cc8 Author: Nick Kew <[email protected]> Authored: Fri Sep 6 11:01:36 2013 +0100 Committer: Nick Kew <[email protected]> Committed: Fri Sep 6 11:01:36 2013 +0100 ---------------------------------------------------------------------- build/xml.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/57fcef17/build/xml.m4 ---------------------------------------------------------------------- diff --git a/build/xml.m4 b/build/xml.m4 index d342814..fc342a9 100644 --- a/build/xml.m4 +++ b/build/xml.m4 @@ -31,9 +31,9 @@ AC_DEFUN([TS_CHECK_XML], [ elif test "$withval" = "libxml2" ; then TS_CHECK_XML_LIBXML2 elif test "x$withval" = "x" ; then - TS_CHECK_XML_EXPAT + TS_CHECK_XML_LIBXML2 if test "$enable_xml" = "no"; then - TS_CHECK_XML_LIBXML2 + TS_CHECK_XML_EXPAT fi else AC_MSG_ERROR([Unrecognised --with-xml option])
