Browse Source

php7-pecl-redis: update to 5.1.1

Enable JSON and disable msgpack serialization.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
lilik-openwrt-22.03
Michael Heimpold 5 years ago
parent
commit
a0d0ea5339
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      lang/php7-pecl-redis/Makefile

+ 6
- 4
lang/php7-pecl-redis/Makefile View File

@ -8,9 +8,9 @@ include $(TOPDIR)/rules.mk
PECL_NAME:=redis PECL_NAME:=redis
PECL_LONGNAME:=PHP extension for interfacing with Redis PECL_LONGNAME:=PHP extension for interfacing with Redis
PKG_VERSION:=5.0.2
PKG_VERSION:=5.1.1
PKG_RELEASE:=1 PKG_RELEASE:=1
PKG_HASH:=4e18d7ebe032a562c358d79f94efa5f187ea90db7a56ef648476e24f4fe0b72c
PKG_HASH:=621c9d2b4054c797b0e5d5bc5e0f1eeb49bedb37f20e46f838aa4d17d2fe8180
PKG_NAME:=php7-pecl-redis PKG_NAME:=php7-pecl-redis
PKG_SOURCE:=$(PECL_NAME)-$(PKG_VERSION).tgz PKG_SOURCE:=$(PECL_NAME)-$(PKG_VERSION).tgz
@ -32,8 +32,10 @@ include ../php7/pecl.mk
CONFIGURE_ARGS+= \ CONFIGURE_ARGS+= \
--enable-redis \ --enable-redis \
--enable-redis-json \
--disable-redis-igbinary \ --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))) $(eval $(call BuildPackage,$(PKG_NAME)))

Loading…
Cancel
Save