~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/gearman_udf/plugin.ac

  • Committer: Brian Aker
  • Date: 2009-05-11 23:55:31 UTC
  • mfrom: (971.3.38 eday-dev)
  • Revision ID: brian@gaz-20090511235531-j6n8i97wg2tyfg51
Merge of Eric's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_LIB_HAVE_LINKFLAGS(gearman,,
 
2
  [#include <libgearman/gearman.h>],
 
3
  [
 
4
     gearman_client_st gearman_client;
 
5
     gearman_version();
 
6
  ])
 
7
AS_IF([test "x$ac_cv_libgearman" = "xno"],
 
8
      AC_MSG_WARN([libgearman not found: not building gearman_udf plugin.]))
 
9
DRIZZLED_PLUGIN_DEP_LIBS="${DRIZZLED_PLUGIN_DEP_LIBS} ${LTLIBGEARMAN}"