diff options
author | Torsten Zuehlsdorff <tz@FreeBSD.org> | 2021-03-28 23:48:44 +0000 |
---|---|---|
committer | Torsten Zuehlsdorff <tz@FreeBSD.org> | 2021-03-28 23:48:44 +0000 |
commit | dfc4a14830dff3ca215112ecf448ff4671c3caf8 (patch) | |
tree | 77a3932f75448b04776c4227e681dccc7be7e473 /Mk/Uses/php.mk | |
parent | 0eb25f802bf0aef0da210bba79aa42c6f9f604ae (diff) | |
download | ports-dfc4a14830dff3ca215112ecf448ff4671c3caf8.tar.gz ports-dfc4a14830dff3ca215112ecf448ff4671c3caf8.zip |
Notes
Diffstat (limited to 'Mk/Uses/php.mk')
-rw-r--r-- | Mk/Uses/php.mk | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Mk/Uses/php.mk b/Mk/Uses/php.mk index 293454216712..72e9977651db 100644 --- a/Mk/Uses/php.mk +++ b/Mk/Uses/php.mk @@ -377,10 +377,10 @@ _USE_PHP_ALL= bcmath bitset bz2 calendar ctype curl dba dom \ pdo_odbc pdo_pgsql pdo_sqlite phar pgsql posix \ pspell radius readline redis session shmop simplexml snmp soap\ sockets spl sqlite3 sysvmsg sysvsem sysvshm \ - tidy tokenizer xml xmlreader xmlwriter xsl zip zlib + tidy tokenizer xml xmlreader xmlrpc xmlwriter xsl zip zlib # version specific components -_USE_PHP_VER73= ${_USE_PHP_ALL} interbase pdf recode sodium xmlrpc wddx -_USE_PHP_VER74= ${_USE_PHP_ALL} ffi pdf sodium xmlrpc +_USE_PHP_VER73= ${_USE_PHP_ALL} interbase pdf recode sodium wddx +_USE_PHP_VER74= ${_USE_PHP_ALL} ffi pdf sodium _USE_PHP_VER80= ${_USE_PHP_ALL} ffi sodium bcmath_DEPENDS= math/php${PHP_VER}-bcmath @@ -452,7 +452,11 @@ tokenizer_DEPENDS= devel/php${PHP_VER}-tokenizer wddx_DEPENDS= textproc/php${PHP_VER}-wddx xml_DEPENDS= textproc/php${PHP_VER}-xml xmlreader_DEPENDS= textproc/php${PHP_VER}-xmlreader +.if ${PHP_VER} >= 80 +xmlrpc_DEPENDS= net/pecl-xmlrpc@${PHP_FLAVOR} +.else xmlrpc_DEPENDS= net/php${PHP_VER}-xmlrpc +.endif xmlwriter_DEPENDS= textproc/php${PHP_VER}-xmlwriter xsl_DEPENDS= textproc/php${PHP_VER}-xsl zip_DEPENDS= archivers/php${PHP_VER}-zip |