summaryrefslogtreecommitdiff
path: root/devel/php-memcache/options.mk
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2007-03-11 16:28:38 +0000
committergrant <grant@pkgsrc.org>2007-03-11 16:28:38 +0000
commit6f529bb312d9380161cc9444567947c3e696170c (patch)
treea0d57dc6d7f99e77eff889c34f2f15ce3bd2f5ec /devel/php-memcache/options.mk
parenta6a745d0217e5474f3eef3341953a88d04ab134e (diff)
downloadpkgsrc-6f529bb312d9380161cc9444567947c3e696170c.tar.gz
update to 2.1.0.
changes since 2.0.1: 2.1.0 - Servers may be flagged up/down and the user may specify a error callback - Individual server params and up/down status may be changed at runtime - New methods: setServerParams(), getServerStatus() - Statistics methods support fetching other kinds of stats (slabs, items, cachedump, ...) - Fixed PECL bugs #7631, #8117 (erroneous line feeds in config.m4) - Added memcache.max_failover_attempts ini directive, which can be used to configure max number of servers to try when setting and getting data. 2.0.4 - Redefined retry_interval as long to fix no-automatic-reconnect behaviour - Fixed PECL bugs #7635, #7637 (OnUpdateInt: referenced symbol not found) 2.0.3 - Display ini entries in phpinfo() output - Fixed Zend2 compat 2.0.2 - Added "memcache.default_port" ini directive (default 11211) - Added "memcache.allow_failover" ini directive (default On) - Added "memcache.chunk_size" ini directive (default 8192 bytes) - Setting retry_interval parameter to -1 disables automatic reconnect - Fixed PECL bug #7331 (NULL pointer freeing causes memcache to segfault)
Diffstat (limited to 'devel/php-memcache/options.mk')
-rw-r--r--devel/php-memcache/options.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/devel/php-memcache/options.mk b/devel/php-memcache/options.mk
new file mode 100644
index 00000000000..8763b5f2a65
--- /dev/null
+++ b/devel/php-memcache/options.mk
@@ -0,0 +1,15 @@
+# $NetBSD: options.mk,v 1.1 2007/03/11 16:28:39 grant Exp $
+#
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.php
+PKG_SUPPORTED_OPTIONS+= ssl
+PKG_SUGGESTED_OPTIONS+= ssl
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Mssl)
+. include "../../security/openssl/buildlink3.mk"
+CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
+.else
+CONFIGURE_ARGS+= --without-openssl
+.endif