Sha256: 6126d258258df2eb4d51d82fe7d4638ac955eca7cb22043d68cebd96bdc87ec2

Contents?: true

Size: 1.34 KB

Versions: 2

Compression:

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

  dnl --------------------------------------------------------------------
  dnl  Check for libhaildb
  dnl --------------------------------------------------------------------

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


  AS_IF([test "x$ac_enable_libhaildb" = "xyes"],[
    AC_LIB_HAVE_LINKFLAGS(haildb,,[
      #include <haildb.h>
    ],[
      ib_update_table_statistics(NULL);
    ])
    AS_IF([test "x${ac_cv_libhaildb}" = "xyes"],[
      AC_DEFINE([HAVE_HAILDB_H],[1],[Do we have haildb.h])
      ])
  ],[
    ac_cv_libhaildb="no"
  ])
  AM_CONDITIONAL(HAVE_LIBHAILDB, [test "x${ac_cv_libhaildb}" = "xyes"])
])

AC_DEFUN([PANDORA_HAVE_LIBHAILDB],[
  AC_REQUIRE([_PANDORA_SEARCH_LIBHAILDB])
])

AC_DEFUN([PANDORA_REQUIRE_LIBHAILDB],[
  AC_REQUIRE([PANDORA_HAVE_LIBHAILDB])
  AS_IF([test "x${ac_cv_libhaildb}" = "xno"],
      AC_MSG_ERROR([libhaildb 2.3.2 or later 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_libhaildb.m4
couchbase-memcached-1.2.8 ext/libmemcached-0.50/m4/pandora_have_libhaildb.m4