php7-pecl-redis: update to 5.1.1

Enable JSON and disable msgpack serialization.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
This commit is contained in:
Michael Heimpold 2019-11-29 22:24:08 +01:00
parent d24014f27e
commit a0d0ea5339

View file

@ -8,9 +8,9 @@ include $(TOPDIR)/rules.mk
PECL_NAME:=redis
PECL_LONGNAME:=PHP extension for interfacing with Redis
PKG_VERSION:=5.0.2
PKG_VERSION:=5.1.1
PKG_RELEASE:=1
PKG_HASH:=4e18d7ebe032a562c358d79f94efa5f187ea90db7a56ef648476e24f4fe0b72c
PKG_HASH:=621c9d2b4054c797b0e5d5bc5e0f1eeb49bedb37f20e46f838aa4d17d2fe8180
PKG_NAME:=php7-pecl-redis
PKG_SOURCE:=$(PECL_NAME)-$(PKG_VERSION).tgz
@ -32,8 +32,10 @@ include ../php7/pecl.mk
CONFIGURE_ARGS+= \
--enable-redis \
--enable-redis-json \
--disable-redis-igbinary \
--disable-redis-lzf
--disable-redis-lzf \
--disable-redis-msgpack
$(eval $(call PECLPackage,$(PECL_NAME),$(PECL_LONGNAME),+php7-mod-hash +php7-mod-session,25))
$(eval $(call PECLPackage,$(PECL_NAME),$(PECL_LONGNAME),+php7-mod-hash +php7-mod-json +php7-mod-session,25))
$(eval $(call BuildPackage,$(PKG_NAME)))