Sha256: 66f2330245ed107e0dc2ea95739f07cc15e4f2fd9678b6942a6a3c71df34ac1c

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 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_LIBBDB],[
  AC_REQUIRE([AC_LIB_PREFIX])

  dnl --------------------------------------------------------------------
  dnl  Check for bekerely db
  dnl --------------------------------------------------------------------

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

  AS_IF([test "x$ac_enable_libbdb" = "xyes"],[
    AC_LIB_HAVE_LINKFLAGS(db,,[
      #include <db.h>
    ],[
      const char *test= DB_VERSION_STRING;
    ])
  ],[
    ac_cv_libbdb="no"
  ])

  AM_CONDITIONAL(HAVE_LIBBDB, [test "x${ac_cv_libbdb}" = "xyes"])
])

AC_DEFUN([PANDORA_HAVE_LIBBDB],[
  AC_REQUIRE([_PANDORA_SEARCH_LIBBDB])
])

AC_DEFUN([PANDORA_REQUIRE_LIBBDB],[
  AC_REQUIRE([_PANDORA_SEARCH_LIBBDB])
  AS_IF([test "x${ac_cv_libbdb}" = "xno"],
    AC_MSG_ERROR([libbdb 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_libbdb.m4
couchbase-memcached-1.2.8 ext/libmemcached-0.50/m4/pandora_have_libbdb.m4