Changeset View
Changeset View
Standalone View
Standalone View
head/Mk/Uses/php.mk
Show First 20 Lines • Show All 102 Lines • ▼ Show 20 Lines | |||||
# Mk/bsd.default-versions.mk in sync. | # Mk/bsd.default-versions.mk in sync. | ||||
PHP_VER?= ${DEFAULT_PHP_VER} | PHP_VER?= ${DEFAULT_PHP_VER} | ||||
. if ${PHP_VER} == 70 | . if ${PHP_VER} == 70 | ||||
PHP_EXT_DIR= 20151012 | PHP_EXT_DIR= 20151012 | ||||
PHP_EXT_INC= pcre spl | PHP_EXT_INC= pcre spl | ||||
. elif ${PHP_VER} == 56 | . elif ${PHP_VER} == 56 | ||||
PHP_EXT_DIR= 20131226 | PHP_EXT_DIR= 20131226 | ||||
PHP_EXT_INC= pcre spl | PHP_EXT_INC= pcre spl | ||||
. elif ${PHP_VER} == 55 | |||||
PHP_EXT_DIR= 20121212 | |||||
PHP_EXT_INC= pcre spl | |||||
. else | . else | ||||
# (rene) default to DEFAULT_VERSIONS | # (rene) default to DEFAULT_VERSIONS | ||||
PHP_EXT_DIR= 20131226 | PHP_EXT_DIR= 20131226 | ||||
PHP_EXT_INC= pcre spl | PHP_EXT_INC= pcre spl | ||||
. endif | . endif | ||||
HTTPD?= ${LOCALBASE}/sbin/httpd | HTTPD?= ${LOCALBASE}/sbin/httpd | ||||
. if exists(${HTTPD}) | . if exists(${HTTPD}) | ||||
▲ Show 20 Lines • Show All 171 Lines • ▼ Show 20 Lines | _USE_PHP_ALL= bcmath bitset bz2 calendar ctype curl dba dom \ | ||||
hash iconv igbinary imap interbase intl json ldap mbstring mcrypt \ | hash iconv igbinary imap interbase intl json ldap mbstring mcrypt \ | ||||
memcache mysqli odbc opcache \ | memcache mysqli odbc opcache \ | ||||
openssl pcntl pcre pdf pdo pdo_dblib pdo_firebird pdo_mysql \ | openssl pcntl pcre pdf pdo pdo_dblib pdo_firebird pdo_mysql \ | ||||
pdo_odbc pdo_pgsql pdo_sqlite phar pgsql posix \ | pdo_odbc pdo_pgsql pdo_sqlite phar pgsql posix \ | ||||
pspell radius readline recode redis session shmop simplexml snmp soap\ | pspell radius readline recode redis session shmop simplexml snmp soap\ | ||||
sockets spl sqlite3 sysvmsg sysvsem sysvshm \ | sockets spl sqlite3 sysvmsg sysvsem sysvshm \ | ||||
tidy tokenizer wddx xml xmlreader xmlrpc xmlwriter xsl zip zlib | tidy tokenizer wddx xml xmlreader xmlrpc xmlwriter xsl zip zlib | ||||
# version specific components | # version specific components | ||||
_USE_PHP_VER55= ${_USE_PHP_ALL} mssql mysql sybase_ct | |||||
_USE_PHP_VER56= ${_USE_PHP_ALL} mssql mysql sybase_ct | _USE_PHP_VER56= ${_USE_PHP_ALL} mssql mysql sybase_ct | ||||
_USE_PHP_VER70= ${_USE_PHP_ALL} | _USE_PHP_VER70= ${_USE_PHP_ALL} | ||||
bcmath_DEPENDS= math/php${PHP_VER}-bcmath | bcmath_DEPENDS= math/php${PHP_VER}-bcmath | ||||
. if ${PHP_VER} == 70 | . if ${PHP_VER} == 70 | ||||
bitset_DEPENDS= math/pecl-bitset | bitset_DEPENDS= math/pecl-bitset | ||||
. else | . else | ||||
bitset_DEPENDS= math/pecl-bitset2 | bitset_DEPENDS= math/pecl-bitset2 | ||||
▲ Show 20 Lines • Show All 99 Lines • Show Last 20 Lines |