diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2013-10-20 14:55:57 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2013-10-20 14:55:57 +0800 |
commit | 309381f868a5aa4e291009f010f722c8d1fd9bf1 (patch) | |
tree | 66c48b0088bbf0d948011703844db7b71944cbde /www | |
parent | 2f0c1fc6abadc660c53c0a28791402aae6385698 (diff) | |
download | freebsd-ports-gnome-309381f868a5aa4e291009f010f722c8d1fd9bf1.tar.gz freebsd-ports-gnome-309381f868a5aa4e291009f010f722c8d1fd9bf1.tar.zst freebsd-ports-gnome-309381f868a5aa4e291009f010f722c8d1fd9bf1.zip |
- Mark IGNORE with php 5.5.x
- Convert to new options helper
Diffstat (limited to 'www')
-rw-r--r-- | www/pecl-APC/Makefile | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/www/pecl-APC/Makefile b/www/pecl-APC/Makefile index 8a126dfb0dd7..4786164a3d3c 100644 --- a/www/pecl-APC/Makefile +++ b/www/pecl-APC/Makefile @@ -23,6 +23,8 @@ SPINLOCKS_DESC= Spinlocks (experimental) CFLAGS+= -I${LOCALBASE}/include CONFIGURE_ARGS= --enable-apc +IGNORE_WITH_PHP=55 +NO_STAGE= yes PHP_MODNAME= ${PORTNAME:L} PKGMESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message @@ -32,24 +34,12 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-3.1.13 PORTDOCS= CHANGELOG INSTALL NOTICE apc.php -NO_STAGE= yes -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MFILEHITS} -CONFIGURE_ARGS+=--enable-apc-filehits -.endif +FILEHITS_CONFIGURE_ARGS=--enable-apc-filehits +IPC_CONFIGURE_ARGS= --disable-apc-mmap +SEMAPHORES_CONFIGURE_ARGS= --enable-apc-sem +SPINLOCKS_CONFIGURE_ARGS= --enable-apc-spinlocks -.if ${PORT_OPTIONS:MIPC} -CONFIGURE_ARGS+=--disable-apc-mmap -.endif - -.if ${PORT_OPTIONS:MSEMAPHORES} -CONFIGURE_ARGS+=--enable-apc-sem -.endif - -.if ${PORT_OPTIONS:MSPINLOCKS} -CONFIGURE_ARGS+=--enable-apc-spinlocks -.endif +.include <bsd.port.options.mk> post-install: .if ${PORT_OPTIONS:MDOCS} |