Sha256: 7958d081e3284b2b1956ac16fdebd2cdf322c307c72d91cdfe9cfeaad76c04ea

Contents?: true

Size: 1.46 KB

Versions: 2

Compression:

Stored size: 1.46 KB

Contents

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

# We check two things: where the include file is for cinttypes. We
# include AC_TRY_COMPILE for all the combinations we've seen in the
# wild.  We define one of HAVE_CINTTYPES or HAVE_TR1_CINTTYPES or 
# HAVE_BOOST_CINTTYPES depending
# on location.

AC_DEFUN([PANDORA_CXX_CINTTYPES],
  [AC_REQUIRE([PANDORA_CXX_CSTDINT])
   AC_MSG_CHECKING(the location of cinttypes)
   AC_LANG_PUSH(C++)
   save_CXXFLAGS="${CXXFLAGS}"
   CXXFLAGS="${CXX_STANDARD} ${CXXFLAGS}"
   ac_cv_cxx_cinttypes=""
   for location in tr1/cinttypes boost/cinttypes cinttypes; do
     if test -z "$ac_cv_cxx_cinttypes"; then
       AC_TRY_COMPILE([#include $ac_cv_cxx_cstdint;
                       #include <$location>],
                      [uint32_t foo= UINT32_C(1)],
                      [ac_cv_cxx_cinttypes="<$location>";])
     fi
   done
   AC_LANG_POP()
   CXXFLAGS="${save_CXXFLAGS}"
   if test -n "$ac_cv_cxx_cinttypes"; then
      AC_MSG_RESULT([$ac_cv_cxx_cinttypes])
   else
      ac_cv_cxx_cinttypes="<inttypes.h>"
      AC_MSG_RESULT()
      AC_MSG_WARN([Could not find a cinttypes header.])
   fi
   AC_DEFINE([__STDC_LIMIT_MACROS],[1],[Use STDC Limit Macros in C++])
   AC_DEFINE_UNQUOTED(CINTTYPES_H,$ac_cv_cxx_cinttypes,
                      [the location of <cinttypes>])
])

Version data entries

2 entries across 2 versions & 1 rubygems

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