diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-05-28 16:19:38 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-05-28 16:19:38 +0000 |
commit | 2d0e828088a71d6ad74ebc219fcebe6ba6de01de (patch) | |
tree | fc1d68e00bd38a4b2e9d827d4e0c56a02c162115 /package/network/services/lldpd/Makefile | |
parent | ba1290ae1cb1cd7a1dd0c37b8b9310c5bb69f52b (diff) | |
download | master-187ad058-2d0e828088a71d6ad74ebc219fcebe6ba6de01de.tar.gz master-187ad058-2d0e828088a71d6ad74ebc219fcebe6ba6de01de.tar.bz2 master-187ad058-2d0e828088a71d6ad74ebc219fcebe6ba6de01de.zip |
lldpd: update to v0.7.15 and add support for parsing /etc/openwrt_release
Also drop superseded patches.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45810 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/services/lldpd/Makefile')
-rw-r--r-- | package/network/services/lldpd/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/package/network/services/lldpd/Makefile b/package/network/services/lldpd/Makefile index d80840e4cb..69f70221a9 100644 --- a/package/network/services/lldpd/Makefile +++ b/package/network/services/lldpd/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=lldpd -PKG_VERSION:=0.7.13 -PKG_RELEASE:=2 +PKG_VERSION:=0.7.15 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://media.luffy.cx/files/lldpd -PKG_MD5SUM:=13e8be761753eac9a8e12128acba40b4 +PKG_MD5SUM:=46f7ad97fc1d04084ab11b32fc0ed708 PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org> PKG_LICENSE:=ISC @@ -92,6 +92,7 @@ CONFIGURE_ARGS += \ ,--disable-privsep) \ --with-readline=no \ --with-embedded-libevent=no \ + --disable-hardening \ $(if $(CONFIG_LLDPD_WITH_CDP),,--disable-cdp) \ $(if $(CONFIG_LLDPD_WITH_FDP),,--disable-fdp) \ $(if $(CONFIG_LLDPD_WITH_EDP),,--disable-edp) \ @@ -99,7 +100,7 @@ CONFIGURE_ARGS += \ $(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) + $(if $(CONFIG_LLDPD_WITH_JSON),--with-json=json-c,--with-json=no) $(eval $(call BuildPackage,lldpd)) |