1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

Disable xmlExp regex code

This is apparently another regex engine that was never used, see commit
81a8ec6.
This commit is contained in:
Nick Wellnhofer 2019-09-26 12:11:39 +02:00
parent 664f881008
commit d56184a085
2 changed files with 6 additions and 1 deletions

View File

@ -915,6 +915,9 @@ Regexptests: testRegexp$(EXEEXT)
if [ -n "$$log" ] ; then echo $$name result ; echo "$$log" ; fi ; \
rm result.$$name ; \
fi ; fi ; done)
# Disabled for now
Exptests: testRegexp$(EXEEXT)
@echo "## Formal expresssions regression tests"
-@(for i in $(srcdir)/test/expr/* ; do \
name=`basename $$i`; \

View File

@ -350,8 +350,10 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
* LIBXML_EXPR_ENABLED:
*
* Whether the formal expressions interfaces are compiled in
*
* This code is unused and disabled unconditionally for now.
*/
#if @WITH_SCHEMAS@
#if 0
#define LIBXML_EXPR_ENABLED
#endif