[Buildroot] [git commit] xerces: don't disable network without curl

Thomas Petazzoni thomas.petazzoni at bootlin.com
Wed Oct 10 06:56:13 UTC 2018


commit: https://git.buildroot.net/buildroot/commit/?id=2f79806357f2e11e2fe943cf1e946d9445c79361
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

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 at gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
---
 package/xerces/xerces.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)


More information about the buildroot mailing list