Sha256: 000de37a8e79049e84d5ee4cad36d458c83762bcf0583aeac4076d0d35c4c5c7

Contents?: true

Size: 1.31 KB

Versions: 2

Compression:

Stored size: 1.31 KB

Contents

dnl  Copyright (C) 2009 Sun Microsystems, Inc.
dnl This file is free software; Sun Microsystems, Inc.
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.

AC_DEFUN([_PANDORA_SEARCH_LIBGEARMAN],[
  AC_REQUIRE([AC_LIB_PREFIX])

  dnl --------------------------------------------------------------------
  dnl  Check for libgearman
  dnl --------------------------------------------------------------------

  AC_ARG_ENABLE([libgearman],
    [AS_HELP_STRING([--disable-libgearman],
      [Build with libgearman support @<:@default=on@:>@])],
    [ac_enable_libgearman="$enableval"],
    [ac_enable_libgearman="yes"])

  AS_IF([test "x$ac_enable_libgearman" = "xyes"],[
    AC_LIB_HAVE_LINKFLAGS(gearman,,[
      #include <libgearman/gearman.h>
    ],[
      gearman_client_st gearman_client;
      gearman_client_context(&gearman_client);
    ])
  ],[
    ac_cv_libgearman="no"
  ])

  AM_CONDITIONAL(HAVE_LIBGEARMAN, [test "x${ac_cv_libgearman}" = "xyes"])
])

AC_DEFUN([PANDORA_HAVE_LIBGEARMAN],[
  AC_REQUIRE([_PANDORA_SEARCH_LIBGEARMAN])
])

AC_DEFUN([PANDORA_REQUIRE_LIBGEARMAN],[
  AC_REQUIRE([PANDORA_HAVE_LIBGEARMAN])
  AS_IF([test "x${ac_cv_libgearman}" = "xno"],
      AC_MSG_ERROR([At least version 0.10 of libgearman is required for ${PACKAGE}]))
])

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
couchbase-memcached-1.2.9 ext/libmemcached-0.50/m4/pandora_have_libgearman.m4
couchbase-memcached-1.2.8 ext/libmemcached-0.50/m4/pandora_have_libgearman.m4