blob: 8205d9d2369877665e91a3f66258e39222e5f9a3 [file] [log] [blame]
Jeff Thompsonff092f52013-06-19 13:38:12 -07001AC_INIT([ndn-cpp], [0.5], [],
2 [ndn-cpp], [https://github.com/named-data/ndn-cpp])
3AC_PREREQ([2.59])
4AM_INIT_AUTOMAKE([1.10 -Wall no-define foreign])
5
6AC_CONFIG_HEADERS([config.h])
7AC_PROG_CXX
Jeff Thompson3b3aabf2013-06-21 16:50:20 -07008AC_PROG_RANLIB
9AM_PROG_AR
Jeff Thompsonff092f52013-06-19 13:38:12 -070010AC_LANG([C++])
Jeff Thompson3b3aabf2013-06-21 16:50:20 -070011
Jeff Thompson1b8f4c92013-06-19 16:18:46 -070012AX_CXX_COMPILE_STDCXX_11(, optional)
Jeff Thompsonff092f52013-06-19 13:38:12 -070013
14AC_MSG_CHECKING([for std::shared_ptr])
15AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
16 [[#include <memory>]]
17 [[std::shared_ptr<int> have_shared_ptr;]])
18], [
19 AC_MSG_RESULT([yes])
20 AC_DEFINE_UNQUOTED([HAVE_STD_SHARED_PTR], 1, [1 if have the `std::shared_ptr' class.])
21], [
22 AC_MSG_RESULT([no])
23 AC_DEFINE_UNQUOTED([HAVE_STD_SHARED_PTR], 0, [1 if have the `std::shared_ptr' class.])
24])
Jeff Thompson9e9ea9f2013-06-22 10:31:18 -070025AC_MSG_CHECKING([for boost::shared_ptr])
Jeff Thompsonff092f52013-06-19 13:38:12 -070026AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
27 [[#include <boost/shared_ptr.hpp>]]
28 [[boost::shared_ptr<int> have_shared_ptr;]])
29], [
30 AC_MSG_RESULT([yes])
31 AC_DEFINE_UNQUOTED([HAVE_BOOST_SHARED_PTR], 1, [1 if have the `boost::shared_ptr' class.])
32], [
33 AC_MSG_RESULT([no])
34 AC_DEFINE_UNQUOTED([HAVE_BOOST_SHARED_PTR], 0, [1 if have the `boost::shared_ptr' class.])
35])
36
37AC_CONFIG_FILES([Makefile])
38AC_OUTPUT