blob: 8a2ad045549352b4f7155fd0147c6508e0ea8aa6 [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 Thompson965a3242013-10-02 09:59:35 -070032AX_LIB_SQLITE3()
Jeff Thompson32a23332013-10-07 18:39:00 -070033AC_TYPE_SIZE_T
34AC_TYPE_INT8_T
35AC_TYPE_INT16_T
36AC_TYPE_INT32_T
37AC_TYPE_INT64_T
38AC_TYPE_UINT8_T
39AC_TYPE_UINT16_T
40AC_TYPE_UINT32_T
41AC_TYPE_UINT64_T
42AC_CHECK_FUNCS([memcmp])
43AC_CHECK_FUNCS([memcpy])
44AC_CHECK_FUNCS([memset])
Jeff Thompson3b3aabf2013-06-21 16:50:20 -070045
Jeff Thompson1b8f4c92013-06-19 16:18:46 -070046AX_CXX_COMPILE_STDCXX_11(, optional)
Jeff Thompson1975def2013-10-09 17:06:43 -070047# Require libcrypto.
Jeff Thompson8a055e02013-08-09 10:44:28 -070048AC_CHECK_LIB([crypto], [EVP_EncryptInit], [],
49 [AC_MSG_FAILURE([can't find openssl crypto lib])])
Jeff Thompson1975def2013-10-09 17:06:43 -070050# Silently check for libsqlite3.
51AC_CHECK_LIB([sqlite3], [sqlite3_open], [], [])
Jeff Thompsonff092f52013-06-19 13:38:12 -070052
53AC_MSG_CHECKING([for std::shared_ptr])
54AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
55 [[#include <memory>]]
56 [[std::shared_ptr<int> have_shared_ptr;]])
57], [
58 AC_MSG_RESULT([yes])
59 AC_DEFINE_UNQUOTED([HAVE_STD_SHARED_PTR], 1, [1 if have the `std::shared_ptr' class.])
60], [
61 AC_MSG_RESULT([no])
62 AC_DEFINE_UNQUOTED([HAVE_STD_SHARED_PTR], 0, [1 if have the `std::shared_ptr' class.])
63])
Jeff Thompson9e9ea9f2013-06-22 10:31:18 -070064AC_MSG_CHECKING([for boost::shared_ptr])
Jeff Thompsonff092f52013-06-19 13:38:12 -070065AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
66 [[#include <boost/shared_ptr.hpp>]]
67 [[boost::shared_ptr<int> have_shared_ptr;]])
68], [
69 AC_MSG_RESULT([yes])
70 AC_DEFINE_UNQUOTED([HAVE_BOOST_SHARED_PTR], 1, [1 if have the `boost::shared_ptr' class.])
71], [
72 AC_MSG_RESULT([no])
73 AC_DEFINE_UNQUOTED([HAVE_BOOST_SHARED_PTR], 0, [1 if have the `boost::shared_ptr' class.])
74])
75
Jeff Thompsona28eed82013-08-22 16:21:10 -070076AC_MSG_CHECKING([for std::function])
77AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
78 [[#include <functional>]]
79 [[std::function<int> have_function();]])
80], [
81 AC_MSG_RESULT([yes])
82 AC_DEFINE_UNQUOTED([HAVE_STD_FUNCTION], 1, [1 if have the `std::function' class.])
83], [
84 AC_MSG_RESULT([no])
85 AC_DEFINE_UNQUOTED([HAVE_STD_FUNCTION], 0, [1 if have the `std::function' class.])
86])
87AC_MSG_CHECKING([for boost::function])
88AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
89 [[#include <boost/function.hpp>]]
90 [[boost::function<int> have_function();]])
91], [
92 AC_MSG_RESULT([yes])
93 AC_DEFINE_UNQUOTED([HAVE_BOOST_FUNCTION], 1, [1 if have the `boost::function' class.])
94], [
95 AC_MSG_RESULT([no])
96 AC_DEFINE_UNQUOTED([HAVE_BOOST_FUNCTION], 0, [1 if have the `boost::function' class.])
97])
98
Jeff Thompson9cf9dfb2013-10-04 16:36:52 -070099AC_MSG_CHECKING([for OSX SecKeychain])
100AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
101 [[#include <CoreFoundation/CoreFoundation.h>]]
102 [[#include <Security/Security.h>]]
103 [[#include <CoreServices/CoreServices.h>]]
104 [[void test() { SecKeychainRef x; }]])
105], [
106 AC_MSG_RESULT([yes])
107 AC_DEFINE_UNQUOTED([HAVE_OSX_SECKEYCHAIN], 1, [1 if have OSX SecKeychain.])
108], [
109 AC_MSG_RESULT([no])
110 AC_DEFINE_UNQUOTED([HAVE_OSX_SECKEYCHAIN], 0, [1 if have OSX SecKeychain.])
111])
112
Jeff Thompsonca45e552013-06-26 17:40:06 -0700113DX_HTML_FEATURE(ON)
114DX_CHM_FEATURE(OFF)
115DX_CHI_FEATURE(OFF)
116DX_MAN_FEATURE(OFF)
117DX_RTF_FEATURE(OFF)
118DX_XML_FEATURE(OFF)
119DX_PDF_FEATURE(OFF)
120DX_PS_FEATURE(OFF)
121DX_INIT_DOXYGEN([$PACKAGE_NAME],[Doxyfile])
122
Jeff Thompsonff092f52013-06-19 13:38:12 -0700123AC_CONFIG_FILES([Makefile])
124AC_OUTPUT