summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabrice Fontaine <fontaine.fabrice@gmail.com>2018-10-09 19:25:19 +0200
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-10-10 08:56:13 +0200
commit2f79806357f2e11e2fe943cf1e946d9445c79361 (patch)
tree767172194035d8382ebe9efdcf6bd0e8df8dbdb8
parent20648b21f5a3438f05176f861b1f72ce94474fc0 (diff)
downloadbuildroot-2f79806357f2e11e2fe943cf1e946d9445c79361.tar.gz
buildroot-2f79806357f2e11e2fe943cf1e946d9445c79361.zip
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 <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r--package/xerces/xerces.mk2
1 files changed, 1 insertions, 1 deletions
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)
OpenPOWER on IntegriCloud