From: Fabrice Fontaine Date: Tue, 9 Oct 2018 17:25:19 +0000 (+0200) Subject: xerces: don't disable network without curl X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2f79806357f2e11e2fe943cf1e946d9445c79361;p=buildroot.git xerces: don't disable network without curl curl is not the only network accessor, xerces can also use the socket API if sys/socket is available. So replace --disable-network by --disable-netaccessor-curl Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- diff --git a/package/xerces/xerces.mk b/package/xerces/xerces.mk index da088d8e1c..d74b1e2d3d 100644 --- a/package/xerces/xerces.mk +++ b/package/xerces/xerces.mk @@ -34,7 +34,7 @@ ifeq ($(BR2_PACKAGE_LIBCURL),y) XERCES_CONF_OPTS += --enable-netaccessor-curl --with-curl=$(STAGING_DIR)/usr/lib XERCES_DEPENDENCIES += libcurl else -XERCES_CONF_OPTS += --disable-network +XERCES_CONF_OPTS += --disable-netaccessor-curl endif ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)