Commit 95313e20 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

neon: fix compilation without xml support

webdav needs xml support, so disable it if no xml support is selected,
otherwise configure could get confused about a host xml2-config script.
parent 3e1ed2fe
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -21,5 +21,9 @@ NEON_CONF_OPT+=--with-expat=$(STAGING_DIR)/usr/lib/libexpat.la
NEON_CONF_OPT+=--with-libxml2=no
NEON_DEPENDENCIES+=expat
endif
ifeq ($(strip $(BR2_PACKAGE_NEON_NOXML)),y)
# webdav needs xml support
NEON_CONF_OPT+=--disable-webdav
endif

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