Commit 764d844f authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

xerces: add optional libcurl support

parent 0eafc69b
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -10,7 +10,6 @@ XERCES_MAKE = $(MAKE1)
XERCES_INSTALL_STAGING = YES
XERCES_CONF_OPT = --enable-shared \
		  --disable-threads \
		  --disable-network \
		  --with-gnu-ld

ifeq ($(BR2_PACKAGE_LIBICONV),y)
@@ -18,4 +17,11 @@ XERCES_CONF_ENV += LIBS=-liconv
XERCES_DEPENDENCIES += libiconv
endif

ifeq ($(BR2_PACKAGE_LIBCURL),y)
XERCES_CONF_OPT += --enable-netaccessor-curl
XERCES_DEPENDENCIES += libcurl
else
XERCES_CONF_OPT += --disable-network
endif

$(eval $(call AUTOTARGETS,package,xerces))