diff options
author | Jonas Gorski <jogo@openwrt.org> | 2015-06-19 13:07:17 +0200 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2015-06-19 13:10:19 +0200 |
commit | e49e86e036923e05822edca86fcf21f7581631ce (patch) | |
tree | 19745843d6bea4109ced331d54a263dbafb469b3 /net/znc/Makefile | |
parent | a9277215a945690d9fd235ce7999d756be9060a7 (diff) |
znc: update to 1.6.0
Fixes compilation with musl.
Requires GCC 4.7 or newer, so broken for octeon.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
Diffstat (limited to 'net/znc/Makefile')
-rw-r--r-- | net/znc/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/net/znc/Makefile b/net/znc/Makefile index 8e39a380a..f0cba304f 100644 --- a/net/znc/Makefile +++ b/net/znc/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=znc -PKG_VERSION:=1.4 -PKG_RELEASE:=3 +PKG_VERSION:=1.6.0 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://znc.in/releases \ http://znc.in/releases/archive -PKG_MD5SUM:=630cb74db34d2d5451ba30b47869f6bb +PKG_MD5SUM:=674d8c1277752dcc627b96e33a63376e PKG_MAINTAINER:=Jonas Gorski <jogo@openwrt.org> PKG_LICENSE:=Apache-2.0 @@ -34,7 +34,7 @@ endef define Package/znc $(Package/znc/default) - DEPENDS:=+libopenssl +libpthread +libstdcpp + DEPENDS:=+libopenssl +libpthread +libstdcpp @GCC_VERSION_4_8||GCC_VERSION_4_9 MENU:=1 endef @@ -136,6 +136,8 @@ endef $(eval $(call module,adminlog,Log user connects and disconnects and failed \ logins to file or syslog.)) +$(eval $(call module,alias,Provides bouncer-side command alias support.)) + $(eval $(call module,autoattach,Reattaches you to channels on activity.)) $(eval $(call module,autocycle,Cycles a channel when you are the only one in \ @@ -198,6 +200,8 @@ $(eval $(call module,flooddetach,This module detaches you from channels which \ $(eval $(call module,identfile,Places the ident of a user to a file when they \ are trying to connect.)) +$(eval $(call module,imapauth,Allow users to authenticate via IMAP.)) + $(eval $(call module,keepnick,Tries to get you your primary nick.)) $(eval $(call module,kickrejoin,Implements auto-rejoin-on-kick.)) @@ -209,6 +213,8 @@ $(eval $(call module,listsockets,This module displays a list of all open \ $(eval $(call module,log,Log conversations to file.)) +$(eval $(call module,missingmotd,Sends 422 to clients when they login.)) + $(eval $(call module,modules_online,This module fakes the online status of \ ZNC-*users.)) |