blob: 8fabf21ba379d2746e4dd755c3eaa32d0e1c047b [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])
25AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
26 [[#include <boost/shared_ptr.hpp>]]
27 [[boost::shared_ptr<int> have_shared_ptr;]])
28], [
29 AC_MSG_RESULT([yes])
30 AC_DEFINE_UNQUOTED([HAVE_BOOST_SHARED_PTR], 1, [1 if have the `boost::shared_ptr' class.])
31], [
32 AC_MSG_RESULT([no])
33 AC_DEFINE_UNQUOTED([HAVE_BOOST_SHARED_PTR], 0, [1 if have the `boost::shared_ptr' class.])
34])
35
36AC_CONFIG_FILES([Makefile])
37AC_OUTPUT