summaryrefslogtreecommitdiffstats
path: root/rules/libmemcached.in
diff options
context:
space:
mode:
authorGeorge McCollister <george.mccollister@gmail.com>2010-11-19 14:17:11 -0600
committerMarc Kleine-Budde <mkl@pengutronix.de>2010-11-23 13:12:54 +0100
commite60c86a20bf452c403f054a4762166974907ce51 (patch)
treedb22f3612e0f19aac04c92a8453c541c38307da4 /rules/libmemcached.in
parent91114cd75aea461a928d7118d0aa09150c471214 (diff)
downloadptxdist-e60c86a20bf452c403f054a4762166974907ce51.tar.gz
ptxdist-e60c86a20bf452c403f054a4762166974907ce51.tar.xz
libmemcached: added new packet
I added a new packet libmemcached. A client library for memcached. Signed-off-by: George McCollister <george.mccollister@gmail.com> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'rules/libmemcached.in')
-rw-r--r--rules/libmemcached.in36
1 files changed, 36 insertions, 0 deletions
diff --git a/rules/libmemcached.in b/rules/libmemcached.in
new file mode 100644
index 000000000..fa12ba6fc
--- /dev/null
+++ b/rules/libmemcached.in
@@ -0,0 +1,36 @@
+## SECTION=system_libraries
+
+menuconfig LIBMEMCACHED
+ tristate
+ prompt "libmemcached"
+ help
+ libmemcached is a C client library for interfacing to a memcached
+ server. It has been designed to be light on memory usage, thread
+ safe and to provide full access to server side methods. It also
+ implements several command line tools: memcat, memflush, memrm,
+ memstat, and memslap (for load generation). The library has been
+ designed to allow for different hashing methods on keys,
+ partitioning by keys, and to use consistent hashing for
+ distribution.
+ You can find more information here: http://tangent.org/552/libmemcached.html
+
+ config LIBMEMCACHED_LIBHASHKIT
+ depends on LIBMEMCACHED
+ bool
+ prompt "install libhashkit"
+ help
+ If selected libhashkit will be included in the package.
+
+ config LIBMEMCACHED_LIBMEMCACHEDUTIL
+ depends on LIBMEMCACHED
+ bool
+ prompt "install libmemcachedutil"
+ help
+ If selected libmemcachedutil will be included in the package.
+
+ config LIBMEMCACHED_LIBMEMCACHEDPROTOCOL
+ depends on LIBMEMCACHED
+ bool
+ prompt "install libmemcachedprotocol"
+ help
+ If selected libmemcachedprotocol will be included in the package.