libxml2: do not use --with-mem-debug

it prints millions of lines of output.

Change-Id: I99039f9039a7928f47d4a1d3f9bc36634240888c
This commit is contained in:
Michael Stahl 2013-02-13 12:57:02 +01:00
parent e1c4d62023
commit 75ce51026e

View File

@ -14,6 +14,7 @@ $(eval $(call gb_ExternalProject_use_unpacked,xml2,xml2))
$(eval $(call gb_ExternalProject_register_targets,xml2,\
build \
))
ifeq ($(OS),WNT)
ifeq ($(COM),GCC)
$(call gb_ExternalProject_get_state_target,xml2,build):
@ -39,7 +40,7 @@ else # OS!=WNT
$(call gb_ExternalProject_get_state_target,xml2,build):
cd $(EXTERNAL_WORKDIR) \
&& ./configure --disable-ipv6 --without-python --without-zlib --with-sax1 \
$(if $(debug),--with-mem-debug --with-run-debug) \
$(if $(debug),--with-run-debug) \
$(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \
$(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO) \
LDFLAGS="$(if $(SYSBASE),-L$(SYSBASE)/usr/lib)" \
@ -48,4 +49,5 @@ $(call gb_ExternalProject_get_state_target,xml2,build):
&& $(MAKE) \
&& touch $@
endif
# vim: set noet sw=4 ts=4: