blob: b3d0fea1fced7c1c3b484ba3b8c159b7712f2d08 [file] [log] [blame]
Jeff Thompsonb7523002013-10-09 10:25:00 -07001# To build using autotools on OS X:
2# $ sudo port install autoconf
3# $ sudo port install automake
4# $ sudo port install doxygen
5# Enter the following to show directory for m4 macros, and download the the following into there (use sudo):
6# $ aclocal --print
7# http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_cxx_compile_stdcxx_11.m4
8# http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_prog_doxygen.m4
9# http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_check_openssl.m4
10# http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_lib_sqlite3.m4
11# http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_prefix_config_h.m4
12
Jeff Thompsonff092f52013-06-19 13:38:12 -070013AC_PREREQ([2.59])
Jeff Thompson93a24162013-09-27 13:28:13 -070014AC_INIT([ndn-cpp], [0.2], [ndn-lib@lists.cs.ucla.edu], [ndn-cpp], [https://github.com/named-data/ndn-cpp])
Jeff Thompsonff092f52013-06-19 13:38:12 -070015AM_INIT_AUTOMAKE([1.10 -Wall no-define foreign])
16
Jeff Thompson23cb7422013-10-09 16:11:47 -070017AC_CONFIG_MACRO_DIR([m4])
Jeff Thompson93a24162013-09-27 13:28:13 -070018AC_CONFIG_SRCDIR([config.h.in])
Jeff Thompsonb7523002013-10-09 10:25:00 -070019# Create config.h without prefixes.
20AC_CONFIG_HEADERS(config.h)
21# Add prefixes and output to a unique file name.
22AX_PREFIX_CONFIG_H(ndn-cpp/ndn-cpp-config.h)
Jeff Thompson47053ad2013-08-05 10:36:53 -070023AM_MAINTAINER_MODE
Jeff Thompson3b3aabf2013-06-21 16:50:20 -070024AM_PROG_AR
Jeff Thompson4f031642013-08-05 11:03:16 -070025AC_PROG_LIBTOOL
Jeff Thompson23cb7422013-10-09 16:11:47 -070026LT_PREREQ([2.2])
27LT_INIT()
Jeff Thompson4f031642013-08-05 11:03:16 -070028AC_PROG_CXX
Jeff Thompson1a1b4c02013-06-28 22:28:51 -070029AM_PROG_CC_C_O
Jeff Thompsonfcc4daa2013-10-01 14:52:23 -070030AC_PROG_OBJCXX
Jeff Thompsonff092f52013-06-19 13:38:12 -070031AC_LANG([C++])
Jeff Thompson32a23332013-10-07 18:39:00 -070032AC_TYPE_SIZE_T
33AC_TYPE_INT8_T
34AC_TYPE_INT16_T
35AC_TYPE_INT32_T
36AC_TYPE_INT64_T
37AC_TYPE_UINT8_T
38AC_TYPE_UINT16_T
39AC_TYPE_UINT32_T
40AC_TYPE_UINT64_T
41AC_CHECK_FUNCS([memcmp])
42AC_CHECK_FUNCS([memcpy])
43AC_CHECK_FUNCS([memset])
Jeff Thompson1b8f4c92013-06-19 16:18:46 -070044AX_CXX_COMPILE_STDCXX_11(, optional)
Jeff Thompsonff092f52013-06-19 13:38:12 -070045
46AC_MSG_CHECKING([for std::shared_ptr])
47AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
48 [[#include <memory>]]
49 [[std::shared_ptr<int> have_shared_ptr;]])
50], [
51 AC_MSG_RESULT([yes])
52 AC_DEFINE_UNQUOTED([HAVE_STD_SHARED_PTR], 1, [1 if have the `std::shared_ptr' class.])
53], [
54 AC_MSG_RESULT([no])
55 AC_DEFINE_UNQUOTED([HAVE_STD_SHARED_PTR], 0, [1 if have the `std::shared_ptr' class.])
56])
Jeff Thompson9e9ea9f2013-06-22 10:31:18 -070057AC_MSG_CHECKING([for boost::shared_ptr])
Jeff Thompsonff092f52013-06-19 13:38:12 -070058AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
59 [[#include <boost/shared_ptr.hpp>]]
60 [[boost::shared_ptr<int> have_shared_ptr;]])
61], [
62 AC_MSG_RESULT([yes])
63 AC_DEFINE_UNQUOTED([HAVE_BOOST_SHARED_PTR], 1, [1 if have the `boost::shared_ptr' class.])
64], [
65 AC_MSG_RESULT([no])
66 AC_DEFINE_UNQUOTED([HAVE_BOOST_SHARED_PTR], 0, [1 if have the `boost::shared_ptr' class.])
67])
68
Jeff Thompsona28eed82013-08-22 16:21:10 -070069AC_MSG_CHECKING([for std::function])
70AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
71 [[#include <functional>]]
72 [[std::function<int> have_function();]])
73], [
74 AC_MSG_RESULT([yes])
75 AC_DEFINE_UNQUOTED([HAVE_STD_FUNCTION], 1, [1 if have the `std::function' class.])
76], [
77 AC_MSG_RESULT([no])
78 AC_DEFINE_UNQUOTED([HAVE_STD_FUNCTION], 0, [1 if have the `std::function' class.])
79])
80AC_MSG_CHECKING([for boost::function])
81AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
82 [[#include <boost/function.hpp>]]
83 [[boost::function<int> have_function();]])
84], [
85 AC_MSG_RESULT([yes])
86 AC_DEFINE_UNQUOTED([HAVE_BOOST_FUNCTION], 1, [1 if have the `boost::function' class.])
87], [
88 AC_MSG_RESULT([no])
89 AC_DEFINE_UNQUOTED([HAVE_BOOST_FUNCTION], 0, [1 if have the `boost::function' class.])
90])
91
Jeff Thompsond0f62e12013-10-09 17:41:25 -070092# Require libcrypto.
93AC_CHECK_LIB([crypto], [EVP_EncryptInit], [],
94 [AC_MSG_FAILURE([can't find openssl crypto lib])])
95
96# Conditionally use libsqlite3.
97AX_LIB_SQLITE3()
98if test "$HAVE_LIBSQLITE3" == 1 ; then
99AC_CHECK_LIB([sqlite3], [sqlite3_open], [],
100 [AC_MSG_FAILURE([have sqlite2 headers but no libsqlite3])])
101fi
102
Jeff Thompson9cf9dfb2013-10-04 16:36:52 -0700103AC_MSG_CHECKING([for OSX SecKeychain])
104AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
105 [[#include <CoreFoundation/CoreFoundation.h>]]
106 [[#include <Security/Security.h>]]
107 [[#include <CoreServices/CoreServices.h>]]
108 [[void test() { SecKeychainRef x; }]])
109], [
110 AC_MSG_RESULT([yes])
111 AC_DEFINE_UNQUOTED([HAVE_OSX_SECKEYCHAIN], 1, [1 if have OSX SecKeychain.])
112], [
113 AC_MSG_RESULT([no])
114 AC_DEFINE_UNQUOTED([HAVE_OSX_SECKEYCHAIN], 0, [1 if have OSX SecKeychain.])
115])
116
Jeff Thompsonca45e552013-06-26 17:40:06 -0700117DX_HTML_FEATURE(ON)
118DX_CHM_FEATURE(OFF)
119DX_CHI_FEATURE(OFF)
120DX_MAN_FEATURE(OFF)
121DX_RTF_FEATURE(OFF)
122DX_XML_FEATURE(OFF)
123DX_PDF_FEATURE(OFF)
124DX_PS_FEATURE(OFF)
125DX_INIT_DOXYGEN([$PACKAGE_NAME],[Doxyfile])
126
Jeff Thompsonff092f52013-06-19 13:38:12 -0700127AC_CONFIG_FILES([Makefile])
128AC_OUTPUT