| Index: third_party/libxml/src/Makefile.in
|
| diff --git a/third_party/libxml/src/Makefile.in b/third_party/libxml/src/Makefile.in
|
| index edf924b543b5c3ed7226c4de16bff07ea669cefc..b406cce6431d94c18151a982ff39ad62516ec4f2 100644
|
| --- a/third_party/libxml/src/Makefile.in
|
| +++ b/third_party/libxml/src/Makefile.in
|
| @@ -497,6 +497,7 @@ HTML_DIR = @HTML_DIR@
|
| HTML_OBJ = @HTML_OBJ@
|
| HTTP_OBJ = @HTTP_OBJ@
|
| ICONV_LIBS = @ICONV_LIBS@
|
| +ICU_CFLAGS = @ICU_CFLAGS@
|
| ICU_LIBS = @ICU_LIBS@
|
| INSTALL = @INSTALL@
|
| INSTALL_DATA = @INSTALL_DATA@
|
| @@ -521,6 +522,7 @@ LTLIBOBJS = @LTLIBOBJS@
|
| LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
| LZMA_CFLAGS = @LZMA_CFLAGS@
|
| LZMA_LIBS = @LZMA_LIBS@
|
| +MAINT = @MAINT@
|
| MAKEINFO = @MAKEINFO@
|
| MANIFEST_TOOL = @MANIFEST_TOOL@
|
| MKDIR_P = @MKDIR_P@
|
| @@ -827,7 +829,7 @@ EXTRA_DIST = xml2-config.in xml2Conf.sh.in libxml.spec.in libxml2.spec \
|
| check-xsddata-test-suite.py check-xinclude-test-suite.py \
|
| example/Makefile.am example/gjobread.c example/gjobs.xml \
|
| $(man_MANS) libxml-2.0.pc.in libxml-2.0-uninstalled.pc.in \
|
| - libxml2-config.cmake.in \
|
| + libxml2-config.cmake.in autogen.sh \
|
| trionan.c trionan.h triostr.c triostr.h trio.c trio.h \
|
| triop.h triodef.h libxml.h elfgcchack.h xzlib.h buf.h \
|
| enc.h save.h testThreadsWin32.c genUnicode.py TODO_SCHEMAS \
|
| @@ -860,7 +862,7 @@ all: $(BUILT_SOURCES) config.h
|
| .SUFFIXES: .c .lo .o .obj
|
| am--refresh: Makefile
|
| @:
|
| -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
| +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
| @for dep in $?; do \
|
| case '$(am__configure_deps)' in \
|
| *$$dep*) \
|
| @@ -886,9 +888,9 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
| $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
| $(SHELL) ./config.status --recheck
|
|
|
| -$(top_srcdir)/configure: $(am__configure_deps)
|
| +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
| $(am__cd) $(srcdir) && $(AUTOCONF)
|
| -$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
| +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
| $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
| $(am__aclocal_m4_deps):
|
|
|
| @@ -899,7 +901,7 @@ config.h: stamp-h1
|
| stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
| @rm -f stamp-h1
|
| cd $(top_builddir) && $(SHELL) ./config.status config.h
|
| -$(srcdir)/config.h.in: $(am__configure_deps)
|
| +$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
| ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
| rm -f stamp-h1
|
| touch $@
|
| @@ -1916,6 +1918,10 @@ check-valgrind valgrind: all
|
| @echo '## Go get a cup of coffee it is gonna take a while ...'
|
| $(MAKE) CHECKER='valgrind -q' runtests
|
|
|
| +asan:
|
| + @echo '## rebuilding for ASAN'
|
| + ./configure CFLAGS="-fsanitize=address,undefined -Wformat -Werror=format-security -Werror=array-bounds -g" CXXFLAGS="-fsanitize=address,undefined -Wformat -Werror=format-security -Werror=array-bounds -g" LDFLAGS="-fsanitize=address,undefined" CC="clang" CXX="clang++" --disable-shared ; OptimOff ; $(MAKE) clean ; $(MAKE)
|
| +
|
| testall : tests SVGtests SAXtests
|
|
|
| tests: XMLtests XMLenttests NStests IDtests Errtests APItests $(READER_TEST) $(TEST_SAX) $(TEST_PUSH) $(TEST_HTML) $(TEST_PHTML) $(TEST_VALID) URItests $(TEST_PATTERN) $(TEST_XPATH) $(TEST_XPTR) $(TEST_XINCLUDE) $(TEST_C14N) $(TEST_DEBUG) $(TEST_CATALOG) $(TEST_REGEXPS) $(TEST_SCHEMAS) $(TEST_SCHEMATRON) $(TEST_THREADS) Timingtests $(TEST_VTIME) $(PYTHON_TESTS) $(TEST_MODULES)
|
|
|