Browse Source

php7: rename PECLPackage to PHP7PECLPackage to prepare PHP8 transition

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
lilik-openwrt-22.03
Michael Heimpold 3 years ago
parent
commit
1ada2dd2f9
10 changed files with 10 additions and 10 deletions
  1. +1
    -1
      lang/php7-pecl-dio/Makefile
  2. +1
    -1
      lang/php7-pecl-http/Makefile
  3. +1
    -1
      lang/php7-pecl-imagick/Makefile
  4. +1
    -1
      lang/php7-pecl-krb5/Makefile
  5. +1
    -1
      lang/php7-pecl-libevent/Makefile
  6. +1
    -1
      lang/php7-pecl-mcrypt/Makefile
  7. +1
    -1
      lang/php7-pecl-propro/Makefile
  8. +1
    -1
      lang/php7-pecl-raphf/Makefile
  9. +1
    -1
      lang/php7-pecl-redis/Makefile
  10. +1
    -1
      lang/php7/pecl.mk

+ 1
- 1
lang/php7-pecl-dio/Makefile View File

@ -28,5 +28,5 @@ include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/nls.mk
include ../php7/pecl.mk
$(eval $(call PECLPackage,$(PECL_NAME),$(PECL_LONGNAME)))
$(eval $(call PHP7PECLPackage,$(PECL_NAME),$(PECL_LONGNAME)))
$(eval $(call BuildPackage,$(PKG_NAME)))

+ 1
- 1
lang/php7-pecl-http/Makefile View File

@ -54,5 +54,5 @@ CONFIGURE_ARGS+= \
--with-http-libidnkit-dir=no \
--with-http-libidnkit2-dir=no
$(eval $(call PECLPackage,http,$(PECL_LONGNAME),+icu +libcurl +librt +libevent2 +PACKAGE_libidn:libidn +libidn2 +php7-mod-iconv +php7-mod-session +php7-pecl-raphf +php7-pecl-propro,30))
$(eval $(call PHP7PECLPackage,http,$(PECL_LONGNAME),+icu +libcurl +librt +libevent2 +PACKAGE_libidn:libidn +libidn2 +php7-mod-iconv +php7-mod-session +php7-pecl-raphf +php7-pecl-propro,30))
$(eval $(call BuildPackage,$(PKG_NAME)))

+ 1
- 1
lang/php7-pecl-imagick/Makefile View File

@ -29,5 +29,5 @@ include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/nls.mk
include ../php7/pecl.mk
$(eval $(call PECLPackage,imagick,$(PECL_LONGNAME),+imagemagick,30))
$(eval $(call PHP7PECLPackage,imagick,$(PECL_LONGNAME),+imagemagick,30))
$(eval $(call BuildPackage,$(PKG_NAME)))

+ 1
- 1
lang/php7-pecl-krb5/Makefile View File

@ -33,5 +33,5 @@ CONFIGURE_ARGS+= \
--with-krb5=shared,"$(STAGING_DIR)/usr" \
--with-krb5config=$(STAGING_DIR)/usr/bin/krb5-config
$(eval $(call PECLPackage,krb5,$(PECL_LONGNAME),+krb5-libs,30))
$(eval $(call PHP7PECLPackage,krb5,$(PECL_LONGNAME),+krb5-libs,30))
$(eval $(call BuildPackage,$(PKG_NAME)))

+ 1
- 1
lang/php7-pecl-libevent/Makefile View File

@ -33,5 +33,5 @@ include ../php7/pecl.mk
CONFIGURE_ARGS+= --with-libevent=shared,"$(STAGING_DIR)/usr"
$(eval $(call PECLPackage,$(PECL_NAME),$(PECL_LONGNAME),+libevent2 +php7-mod-sockets,25))
$(eval $(call PHP7PECLPackage,$(PECL_NAME),$(PECL_LONGNAME),+libevent2 +php7-mod-sockets,25))
$(eval $(call BuildPackage,$(PKG_NAME)))

+ 1
- 1
lang/php7-pecl-mcrypt/Makefile View File

@ -31,5 +31,5 @@ include ../php7/pecl.mk
CONFIGURE_ARGS+= --with-mcrypt=shared,"$(STAGING_DIR)/usr"
$(eval $(call PECLPackage,mcrypt,$(PECL_LONGNAME),+libmcrypt +libltdl,30))
$(eval $(call PHP7PECLPackage,mcrypt,$(PECL_LONGNAME),+libmcrypt +libltdl,30))
$(eval $(call BuildPackage,$(PKG_NAME)))

+ 1
- 1
lang/php7-pecl-propro/Makefile View File

@ -37,5 +37,5 @@ define Build/InstallDev
$(CP) $(PKG_BUILD_DIR)/php_propro_api.h $(STAGING_DIR)/usr/include/php7/ext/$(PECL_NAME)/
endef
$(eval $(call PECLPackage,$(PECL_NAME),$(PECL_LONGNAME)))
$(eval $(call PHP7PECLPackage,$(PECL_NAME),$(PECL_LONGNAME)))
$(eval $(call BuildPackage,$(PKG_NAME)))

+ 1
- 1
lang/php7-pecl-raphf/Makefile View File

@ -37,5 +37,5 @@ define Build/InstallDev
cp $(PKG_BUILD_DIR)/php_raphf_api.h $(STAGING_DIR)/usr/include/php7/ext/$(PECL_NAME)/
endef
$(eval $(call PECLPackage,$(PECL_NAME),$(PECL_LONGNAME)))
$(eval $(call PHP7PECLPackage,$(PECL_NAME),$(PECL_LONGNAME)))
$(eval $(call BuildPackage,$(PKG_NAME)))

+ 1
- 1
lang/php7-pecl-redis/Makefile View File

@ -35,5 +35,5 @@ CONFIGURE_ARGS+= \
--disable-redis-lzf \
--disable-redis-msgpack
$(eval $(call PECLPackage,$(PECL_NAME),$(PECL_LONGNAME),+php7-mod-json +php7-mod-session,25))
$(eval $(call PHP7PECLPackage,$(PECL_NAME),$(PECL_LONGNAME),+php7-mod-json +php7-mod-session,25))
$(eval $(call BuildPackage,$(PKG_NAME)))

+ 1
- 1
lang/php7/pecl.mk View File

@ -22,7 +22,7 @@ CONFIGURE_VARS+= \
CONFIGURE_ARGS+= \
--with-php-config=$(STAGING_DIR)/usr/bin/php7-config
define PECLPackage
define PHP7PECLPackage
define Package/php7-pecl-$(1)
$(call Package/php7-pecl/Default)


Loading…
Cancel
Save