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>
This commit is contained in:
Fabrice Fontaine 2018-10-09 19:25:19 +02:00 committed by Thomas Petazzoni
parent 20648b21f5
commit 2f79806357

View File

@ -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)