diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2016-03-08 04:12:14 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2016-03-08 04:12:14 +0800 |
commit | 67bc5ba466619b8b4b40d42b45616860d6cb443d (patch) | |
tree | e156a183141b1879d19e4ad5e96427295f363965 /Mk | |
parent | a448c950374fc5c59bde57ea8602b64789090150 (diff) | |
download | freebsd-ports-gnome-67bc5ba466619b8b4b40d42b45616860d6cb443d.tar.gz freebsd-ports-gnome-67bc5ba466619b8b4b40d42b45616860d6cb443d.tar.zst freebsd-ports-gnome-67bc5ba466619b8b4b40d42b45616860d6cb443d.zip |
- Update bitset_DEPENDS
- Fix space/tab
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.php.mk | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Mk/bsd.php.mk b/Mk/bsd.php.mk index 309d44abee68..62807a32ea28 100644 --- a/Mk/bsd.php.mk +++ b/Mk/bsd.php.mk @@ -56,13 +56,13 @@ PHP_EXT_DIR!= ${PHPBASE}/bin/php-config --extension-dir | ${SED} -ne 's,^${PHPBA DEFAULT_PHP_VER?= ${PHP_DEFAULT:S/.//} PHP_VER?= ${DEFAULT_PHP_VER} -.if ${PHP_VER} == 70 +.if ${PHP_VER} == 70 PHP_EXT_DIR= 20151012 PHP_EXT_INC= pcre spl -.elif ${PHP_VER} == 56 +.elif ${PHP_VER} == 56 PHP_EXT_DIR= 20131226 PHP_EXT_INC= pcre spl -.elif ${PHP_VER} == 55 +.elif ${PHP_VER} == 55 PHP_EXT_DIR= 20121212 PHP_EXT_INC= pcre spl .else @@ -259,7 +259,11 @@ _USE_PHP_VER70= ${_USE_PHP_ALL} apc_DEPENDS= www/pecl-APC bcmath_DEPENDS= math/php${PHP_VER}-bcmath +.if ${PHP_VER} == 70 bitset_DEPENDS= math/pecl-bitset +.else +bitset_DEPENDS= math/pecl-bitset2 +.endif bz2_DEPENDS= archivers/php${PHP_VER}-bz2 calendar_DEPENDS= misc/php${PHP_VER}-calendar ctype_DEPENDS= textproc/php${PHP_VER}-ctype @@ -279,7 +283,7 @@ iconv_DEPENDS= converters/php${PHP_VER}-iconv igbinary_DEPENDS= converters/pecl-igbinary imap_DEPENDS= mail/php${PHP_VER}-imap interbase_DEPENDS= databases/php${PHP_VER}-interbase -.if ${PHP_VER} == 70 +.if ${PHP_VER} == 70 intl_DEPENDS= devel/php${PHP_VER}-intl .else intl_DEPENDS= devel/pecl-intl |