24eef2716f
New in 3.0.14: * Build fix (Shire) * Don't hook the upload hook if APC is disabled (Rasmus) * Local shadow cache support (Gopal) * Avoid uneccessary loops over op_arrays for "known" auto-globals (Gopal) * Fix apc_add() to overwrite timed out user entries (Rasmus) * Fix double inclusion of files with conditional classes in php4 (Gopal) * Allocator fixes to reduce fragmentation (Gopal) New in 3.0.13: * PHP 5.2 file upload progress tracking support (Rasmus) * Pthread mutex and spin locks (Shire) * Recursive zval support for apc_fetch/_store (Shire, Gopal) * apc.stat_ctime flag for ctime checks (Rasmus) * Multiple key fetches with apc_fetch (Shire) * Canary checks for shm memory deallocation (Gopal) * Add hooks for external optimizer (Shire) * Obsolete and remove apc optimizer (Gopal) * APC info changes - cache insert rate, hit and miss rates (Shire) * Fix apc_load_constants (Gopal) * Rewrite dump opcode code to use vld (Gopal) * Use apc_[ewn]print functions for error reporting (Shire) * Auto global fixes and refactoring (Gopal, Shire) * Fix memory leaks in object serialization (Ilia) * Memory cleanup code for destructor order (Gopal) * Win32 build fixes (Ilia, Wez) * ZTS and Php 4 build fixes (Bjori) * Add apc_add() function (Rasmus) * Add optional limited flag to apc_sma_info() (Rasmus) Also fixes: PR: 33424 by FUKAUMI Naoki
24 lines
561 B
Makefile
24 lines
561 B
Makefile
# $NetBSD: Makefile,v 1.5 2007/09/04 22:45:56 jdolecek Exp $
|
|
|
|
MODNAME= apc
|
|
PECL_VERSION= 3.0.14
|
|
CATEGORIES+= sysutils
|
|
COMMENT= Alternative PHP Cache
|
|
|
|
CONFLICTS= php-apc-[0-9]*
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
|
|
CONFIGURE_ARGS+= --enable-${MODNAME}
|
|
WRKSRC= ${WRKDIR}/APC-${PECL_VERSION}
|
|
|
|
PLIST_SRC+= ${.CURDIR}/PLIST.extras
|
|
PLIST_SUBST+= PKGBASE=${PKGBASE:Q}
|
|
DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCDIR}
|
|
|
|
.include "../../lang/php/ext.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|