Re: [Mesa-dev] [PATCH] mapi/glapi: Use ElementTree instead of libxml2.

2014-03-26 Thread Jose Fonseca
- Original Message - > On 03/25/2014 09:34 AM, jfons...@vmware.com wrote: > > From: José Fonseca > > > > It is quite hard to meet the dependency of the libxml2 python bindings > > out side Linux, and in particularly on MacOSX; whereas ElementTree is > > part of Python's standard library.

Re: [Mesa-dev] [PATCH] mapi/glapi: Use ElementTree instead of libxml2.

2014-03-25 Thread Ian Romanick
On 03/25/2014 09:34 AM, jfons...@vmware.com wrote: > From: José Fonseca > > It is quite hard to meet the dependency of the libxml2 python bindings > out side Linux, and in particularly on MacOSX; whereas ElementTree is > part of Python's standard library. ElementTree is more limited than > libxm

Re: [Mesa-dev] [PATCH] mapi/glapi: Use ElementTree instead of libxml2.

2014-03-25 Thread Matt Turner
On Tue, Mar 25, 2014 at 9:34 AM, wrote: > diff --git a/configure.ac b/configure.ac > index c5042f9..04bf711 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -54,7 +54,6 @@ AM_PROG_CC_C_O > AM_PROG_AS > AC_CHECK_PROGS([MAKE], [gmake make]) > AC_CHECK_PROGS([PYTHON2], [python2 python]) > -A

[Mesa-dev] [PATCH] mapi/glapi: Use ElementTree instead of libxml2.

2014-03-25 Thread jfonseca
From: José Fonseca It is quite hard to meet the dependency of the libxml2 python bindings out side Linux, and in particularly on MacOSX; whereas ElementTree is part of Python's standard library. ElementTree is more limited than libxml2: no DTD verification, defaults from DTD, or XInclude support