~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_functions/plugin.ac

  • Committer: Patrick Galbraith
  • Date: 2009-10-08 22:42:05 UTC
  • mto: (1166.5.3 memcached_functions)
  • mto: This revision was merged to the branch mainline in revision 1189.
  • Revision ID: patg@patrick-galbraiths-macbook-pro.local-20091008224205-gq1pehjsivvx0qo9
Starting over with a fresh tree, moved in memcached functions.

Memcached Functions for Drizzle. 

All tests pass.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_LIB_HAVE_LINKFLAGS(memcached,,
 
2
  [#include <libmemcached/memcached.h>],
 
3
  [
 
4
    memcached_st memc;
 
5
    memcached_lib_version();
 
6
  ])
 
7
AS_IF([test "x$ac_cv_libmemcached" = "xno"],
 
8
      AC_MSG_WARN([libmemcached not found: not building memcached_functions plugin.]))
 
9
DRIZZLED_PLUGIN_DEP_LIBS="${DRIZZLED_PLUGIN_DEP_LIBS} ${LTLIBMEMCACHED}"