~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_have_libgearman.m4

  • Committer: Eric Day
  • Date: 2009-09-30 08:02:44 UTC
  • mto: This revision was merged to the branch mainline in revision 1150.
  • Revision ID: eday@oddments.org-20090930080244-08wy63o0td198oag
Updated m4 to require 0.10 release of libgearman.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
      #include <libgearman/gearman.h>
22
22
    ],[
23
23
      gearman_client_st gearman_client;
24
 
      gearman_version();
 
24
      gearman_client_set_workload_free_fn(&gearman_client);
25
25
    ])
26
26
  ],[
27
27
    ac_cv_libgearman="no"
37
37
AC_DEFUN([PANDORA_REQUIRE_LIBGEARMAN],[
38
38
  AC_REQUIRE([PANDORA_HAVE_LIBGEARMAN])
39
39
  AS_IF([test "x${ac_cv_libgearman}" = "xno"],
40
 
      AC_MSG_ERROR([libgearman is required for ${PACKAGE}]))
 
40
      AC_MSG_ERROR([At least version 0.10 of libgearman is required for ${PACKAGE}]))
41
41
])