aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/lldpd/Makefile
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2015-03-13 08:38:25 +0000
committerJohn Crispin <blogic@openwrt.org>2015-03-13 08:38:25 +0000
commit925df2883782c1a7e3e165ec7867efab8780decb (patch)
treee2314faf88f8acf6977fd4cb4910f5c96df2c4fe /package/network/services/lldpd/Makefile
parent568a27b077806e916fb603ecb18b37e751898ff9 (diff)
downloadupstream-925df2883782c1a7e3e165ec7867efab8780decb.tar.gz
upstream-925df2883782c1a7e3e165ec7867efab8780decb.tar.bz2
upstream-925df2883782c1a7e3e165ec7867efab8780decb.zip
lldpd: make LLDP-MED, DOT1 and DOT3 extensions disable-able
The names for the config options were taken from lldpd's configure.ac file. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44743 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/services/lldpd/Makefile')
-rw-r--r--package/network/services/lldpd/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/package/network/services/lldpd/Makefile b/package/network/services/lldpd/Makefile
index 5a1921e9d0..6f97f45e65 100644
--- a/package/network/services/lldpd/Makefile
+++ b/package/network/services/lldpd/Makefile
@@ -85,6 +85,9 @@ CONFIGURE_ARGS += \
$(if $(CONFIG_LLDPD_WITH_CDP),,--disable-cdp) \
$(if $(CONFIG_LLDPD_WITH_FDP),,--disable-fdp) \
$(if $(CONFIG_LLDPD_WITH_EDP),,--disable-edp) \
+ $(if $(CONFIG_LLDPD_WITH_LLDPMED),,--disable-lldpmed) \
+ $(if $(CONFIG_LLDPD_WITH_DOT1),,--disable-dot1) \
+ $(if $(CONFIG_LLDPD_WITH_DOT3),,--disable-dot3) \
$(if $(CONFIG_LLDPD_WITH_SONMP),,--disable-sonmp) \
$(if $(CONFIG_LLDPD_WITH_JSON),--with-json=json-c)