diff options
author | John Crispin <john@openwrt.org> | 2015-05-31 17:46:09 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-05-31 17:46:09 +0000 |
commit | 2bc9e8e50ce50c807d9ba3b92eb944d483ab0c20 (patch) | |
tree | 5e284dc87955d2d34c9ea32491770875443b3b60 /package/network/services | |
parent | 157c9199b35eeeda8c187b2bf9b16470ba261987 (diff) | |
download | upstream-2bc9e8e50ce50c807d9ba3b92eb944d483ab0c20.tar.gz upstream-2bc9e8e50ce50c807d9ba3b92eb944d483ab0c20.tar.bz2 upstream-2bc9e8e50ce50c807d9ba3b92eb944d483ab0c20.zip |
lldpd: disable xml explicitly
This prevents auto-detection of libxml2 and thus the error:
Package lldpd is missing dependencies for the following libraries:
libxml2.so.2
Preventing a dependency to libxml2 is preferred, since libxml2
would be a out-of-(core-)tree dependency.
Reported-by: Buildbot
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
SVN-Revision: 45859
Diffstat (limited to 'package/network/services')
-rw-r--r-- | package/network/services/lldpd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/services/lldpd/Makefile b/package/network/services/lldpd/Makefile index 69f70221a9..cccb9ba5d7 100644 --- a/package/network/services/lldpd/Makefile +++ b/package/network/services/lldpd/Makefile @@ -93,6 +93,7 @@ CONFIGURE_ARGS += \ --with-readline=no \ --with-embedded-libevent=no \ --disable-hardening \ + --without-xml \ $(if $(CONFIG_LLDPD_WITH_CDP),,--disable-cdp) \ $(if $(CONFIG_LLDPD_WITH_FDP),,--disable-fdp) \ $(if $(CONFIG_LLDPD_WITH_EDP),,--disable-edp) \ |