View | Details | Raw Unified | Return to bug 182112
Collapse All | Expand All

(-)Mk/bsd.php.mk (-1 / +6 lines)
Lines 261-267 Link Here
261
_USE_PHP_ALL=	apc bcmath bitset bz2 calendar ctype curl dba dom \
261
_USE_PHP_ALL=	apc bcmath bitset bz2 calendar ctype curl dba dom \
262
		exif fileinfo filter ftp gd gettext gmp \
262
		exif fileinfo filter ftp gd gettext gmp \
263
		hash iconv igbinary imap interbase intl json ldap mbstring mcrypt \
263
		hash iconv igbinary imap interbase intl json ldap mbstring mcrypt \
264
		memcache mssql mysql mysqli odbc \
264
		memcache mssql mysql mysqli odbc opcache \
265
		openssl pcntl pcre pdf pdo pdo_dblib pdo_firebird pdo_mysql \
265
		openssl pcntl pcre pdf pdo pdo_dblib pdo_firebird pdo_mysql \
266
		pdo_odbc pdo_pgsql pdo_sqlite pgsql posix \
266
		pdo_odbc pdo_pgsql pdo_sqlite pgsql posix \
267
		pspell radius readline recode session shmop simplexml snmp soap\
267
		pspell radius readline recode session shmop simplexml snmp soap\
Lines 312-317 Link Here
312
ncurses_DEPENDS=devel/php${PHP_VER}-ncurses
312
ncurses_DEPENDS=devel/php${PHP_VER}-ncurses
313
odbc_DEPENDS=	databases/php${PHP_VER}-odbc
313
odbc_DEPENDS=	databases/php${PHP_VER}-odbc
314
oci8_DEPENDS=	databases/php${PHP_VER}-oci8
314
oci8_DEPENDS=	databases/php${PHP_VER}-oci8
315
.if ${PHP_VER} == 55
316
opcache_DEPENDS=	www/php${PHP_VER}-opcache
317
.else
318
opcache_DEPENDS=	www/pecl-zendopcache
319
.endif	
315
openssl_DEPENDS=security/php${PHP_VER}-openssl
320
openssl_DEPENDS=security/php${PHP_VER}-openssl
316
pcntl_DEPENDS=	devel/php${PHP_VER}-pcntl
321
pcntl_DEPENDS=	devel/php${PHP_VER}-pcntl
317
pcre_DEPENDS=	devel/php${PHP_VER}-pcre
322
pcre_DEPENDS=	devel/php${PHP_VER}-pcre
(-)lang/php55/Makefile.ext (+4 lines)
Lines 220-225 Link Here
220
USE_OPENSSL=	yes
220
USE_OPENSSL=	yes
221
.endif
221
.endif
222
222
223
.if ${PHP_MODNAME} == "opcache"
224
CONFIGURE_ARGS+=--enable-opcache
225
.endif
226
223
.if ${PHP_MODNAME} == "pcntl"
227
.if ${PHP_MODNAME} == "pcntl"
224
CONFIGURE_ARGS+=--enable-pcntl
228
CONFIGURE_ARGS+=--enable-pcntl
225
.endif
229
.endif
(-)www/Makefile (+1 lines)
Lines 1419-1424 Link Here
1419
    SUBDIR += php52-tidy
1419
    SUBDIR += php52-tidy
1420
    SUBDIR += php53-session
1420
    SUBDIR += php53-session
1421
    SUBDIR += php53-tidy
1421
    SUBDIR += php53-tidy
1422
    SUBDIR += php55-opcache
1422
    SUBDIR += php55-session
1423
    SUBDIR += php55-session
1423
    SUBDIR += php55-tidy
1424
    SUBDIR += php55-tidy
1424
    SUBDIR += phpbb
1425
    SUBDIR += phpbb
(-)www/pecl-zendopcache/Makefile (+2 lines)
Lines 23-28 Link Here
23
23
24
PORTDOCS=	*
24
PORTDOCS=	*
25
25
26
IGNORE_WITH_PHP=	55
27
26
.include <bsd.port.options.mk>
28
.include <bsd.port.options.mk>
27
29
28
.if ${PORT_OPTIONS:MDOCS}
30
.if ${PORT_OPTIONS:MDOCS}
(-)www/php55-opcache/Makefile (+11 lines)
Line 0 Link Here
1
# Created by: Martin Matuska <mm@FreeBSD.org>
2
# $FreeBSD$
3
4
CATEGORIES=	www
5
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
8
PKGNAMESUFFIX=	-opcache
9
USE_ZENDEXT=	yes
10
11
.include "${MASTERDIR}/Makefile"

Return to bug 182112