blob: 33b5696443686fd4ad8082a1b71944174348e34f [file] [log] [blame]
Jeff Thompson18f43e12013-11-21 12:45:12 -08001# To build using autotools, see the Development section of the file INSTALL.
Jeff Thompsonb7523002013-10-09 10:25:00 -07002
Jeff Thompsonff092f52013-06-19 13:38:12 -07003AC_PREREQ([2.59])
Jeff Thompson93a24162013-09-27 13:28:13 -07004AC_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 -07005AM_INIT_AUTOMAKE([1.10 -Wall no-define foreign])
6
Jeff Thompson23cb7422013-10-09 16:11:47 -07007AC_CONFIG_MACRO_DIR([m4])
Jeff Thompson5d16a902013-10-10 11:15:14 -07008AC_CONFIG_SRCDIR([configure.ac])
Jeff Thompson6e229042013-10-10 11:09:49 -07009# Create config.h without prefixes. Put it in the include directory so CFLAGS will have -I./include .
10AC_CONFIG_HEADERS(include/config.h)
11# Add prefixes and output to a unique file name which will go into the ndn-cpp include install directory.
12AX_PREFIX_CONFIG_H(include/ndn-cpp/ndn-cpp-config.h)
Jeff Thompson47053ad2013-08-05 10:36:53 -070013AM_MAINTAINER_MODE
Jeff Thompson3b3aabf2013-06-21 16:50:20 -070014AM_PROG_AR
Jeff Thompson4f031642013-08-05 11:03:16 -070015AC_PROG_LIBTOOL
Jeff Thompson23cb7422013-10-09 16:11:47 -070016LT_PREREQ([2.2])
17LT_INIT()
Jeff Thompson4f031642013-08-05 11:03:16 -070018AC_PROG_CXX
Jeff Thompson1a1b4c02013-06-28 22:28:51 -070019AM_PROG_CC_C_O
Jeff Thompsonfcc4daa2013-10-01 14:52:23 -070020AC_PROG_OBJCXX
Jeff Thompsonff092f52013-06-19 13:38:12 -070021AC_LANG([C++])
Jeff Thompsonb18b6eb2013-10-11 18:28:50 -070022
23# Special case.
24case "$host" in
25 *-darwin* | *-macos10*)
26 if test -d /opt/local ; then
27 CFLAGS="$CFLAGS -I/opt/local/include"
28 CXXFLAGS="$CXXFLAGS -I/opt/local/include"
29 CPPFLAGS="$CPPFLAGS -I/opt/local/include"
30 LDFLAGS="$LDFLAGS -L/opt/local/lib"
31 elif test -d /sw ; then
32 CFLAGS="$CFLAGS -I/sw/include"
33 CXXFLAGS="$CXXFLAGS -I/sw/include"
34 CPPFLAGS="$CPPFLAGS -I/sw/include"
35 LDFLAGS="$LDFLAGS -L/sw/lib"
36 fi
37 ;;
38esac
39
Jeff Thompson32a23332013-10-07 18:39:00 -070040AC_TYPE_SIZE_T
41AC_TYPE_INT8_T
42AC_TYPE_INT16_T
43AC_TYPE_INT32_T
44AC_TYPE_INT64_T
45AC_TYPE_UINT8_T
46AC_TYPE_UINT16_T
47AC_TYPE_UINT32_T
48AC_TYPE_UINT64_T
Jeff Thompsonea946202013-10-18 14:35:32 -070049AC_CHECK_FUNCS([memcmp] [memcpy] [memset])
50AC_CHECK_FUNCS([strchr], :, AC_MSG_ERROR([*** strchr not found. Check 'config.log' for more details.]))
51AC_CHECK_FUNCS([sscanf], :, AC_MSG_ERROR([*** sscanf not found. Check 'config.log' for more details.]))
Jeff Thompsond32bab62013-10-18 14:55:26 -070052AC_CHECK_HEADERS([time.h], :, AC_MSG_ERROR([*** time.h not found. Check 'config.log' for more details.]))
Jeff Thompsonea946202013-10-18 14:35:32 -070053AC_CHECK_HEADERS([sys/time.h], :, AC_MSG_ERROR([*** sys/time.h not found. Check 'config.log' for more details.]))
54AC_CHECK_FUNCS([gettimeofday], :, AC_MSG_ERROR([*** gettimeofday not found. processEvents requires it. Check 'config.log' for more details.]))
Jeff Thompson6e229042013-10-10 11:09:49 -070055AC_C_INLINE
Jeff Thompsonff092f52013-06-19 13:38:12 -070056
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080057# Unless --without-c++11 specified, try to enable C++11
58AX_CXX_COMPILE_STDCXX_11(, optional)
Jeff Thompsonff092f52013-06-19 13:38:12 -070059
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080060AC_ARG_WITH([system-boost],
61 AS_HELP_STRING(
62 [--with-system-boost],
63 [use system-installed boost libraries. If not specified, use the bundled version when necessary.]
64 ),
65 [want_system_boost="yes"],
66 [want_system_boost="no"]
67)
68
69AX_BOOST_BASE([1.42.0],
70 [
71 if test "$want_system_boost" == "yes" ; then
72 AC_DEFINE(USE_SYSTEM_BOOST,[1],[use system-installed boost libraries])
Alexander Afanasyevf7f878c2014-01-12 13:57:56 -080073 AM_CONDITIONAL(USE_SYSTEM_BOOST, true)
74 else
75 AM_CONDITIONAL(USE_SYSTEM_BOOST, false)
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080076 fi
77 ],
Alexander Afanasyevf7f878c2014-01-12 13:57:56 -080078 [AM_CONDITIONAL(USE_SYSTEM_BOOST, false)]
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080079)
Alexander Afanasyevfad679c2014-01-06 18:09:26 -080080AX_BOOST_ASIO
81
82AC_ARG_WITH([tests],
83 AS_HELP_STRING(
84 [--with-tests],
85 [Enable compilation of library tests (disabled by default).]
86 ),
87 [
88 want_tests="yes"
89 AM_CONDITIONAL(COMPILE_TESTS, true)
90 ],
91 [
92 want_tests="no"
93 AM_CONDITIONAL(COMPILE_TESTS, false)
94 ]
95)
96
97AX_BOOST_SYSTEM
98AX_BOOST_UNIT_TEST_FRAMEWORK
99AM_CONDITIONAL(HAVE_BOOST_UNIT_TEST_FRAMEWORK, [test "x$ax_cv_boost_unit_test_framework" = "xyes"])
Jeff Thompsona28eed82013-08-22 16:21:10 -0700100
Jeff Thompsonea946202013-10-18 14:35:32 -0700101AC_MSG_CHECKING([for gmtime support])
102AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
Jeff Thompsond32bab62013-10-18 14:55:26 -0700103 [[#include <time.h>]]
Jeff Thompsonea946202013-10-18 14:35:32 -0700104 [[#include <sys/time.h>]]
105 [[struct timeval tv;]]
106 [[int result1 = gettimeofday(&tv, 0);]]
107 [[time_t time1 = time(0);]]
108 [[struct tm* tm1 = gmtime(&time1);]]
109 [[time_t time2 = timegm(tm1);]])
110], [
111 AC_MSG_RESULT([yes])
112 AC_DEFINE_UNQUOTED([HAVE_GMTIME_SUPPORT], 1, [1 if have sys/time gmtime support including timegm.])
113], [
114 AC_MSG_RESULT([no])
115 AC_DEFINE_UNQUOTED([HAVE_GMTIME_SUPPORT], 0, [1 if have sys/time gmtime support including timegm.])
116])
117
Alexander Afanasyev0d3671a2014-01-02 20:09:59 -0800118# Require openssl (libcrypto).
119AX_CHECK_OPENSSL([], [AC_MSG_FAILURE([can't find openssl crypto lib])])
Jeff Thompsond0f62e12013-10-09 17:41:25 -0700120
Alexander Afanasyevc5bb2ad2014-01-06 16:03:34 -0800121AX_LIB_CRYPTOPP([], [AC_MSG_FAILURE([can't find crypto++ library])])
122
Jeff Thompsonbb6b5682013-10-09 18:22:38 -0700123# Conditionally use libsqlite3. AX_LIB_SQLITE3 defines HAVE_SQLITE3 in confdefs.h .
Jeff Thompsond0f62e12013-10-09 17:41:25 -0700124AX_LIB_SQLITE3()
Jeff Thompsonbb6b5682013-10-09 18:22:38 -0700125if grep -q "#define HAVE_SQLITE3" confdefs.h ; then
Alexander Afanasyev0d3671a2014-01-02 20:09:59 -0800126 AC_CHECK_LIB([sqlite3], [sqlite3_open], [ ], # space necessar to prevent updating LIBS
Jeff Thompsonf21e2242013-10-09 19:01:49 -0700127 [AC_MSG_FAILURE([have sqlite2 headers but no libsqlite3])])
Jeff Thompsond0f62e12013-10-09 17:41:25 -0700128fi
129
Jeff Thompsonf21e2242013-10-09 19:01:49 -0700130# Conditionally use the OSX Security framework .
131AC_MSG_CHECKING([for OSX Security framework])
Jeff Thompson9cf9dfb2013-10-04 16:36:52 -0700132AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
133 [[#include <CoreFoundation/CoreFoundation.h>]]
134 [[#include <Security/Security.h>]]
135 [[#include <CoreServices/CoreServices.h>]]
136 [[void test() { SecKeychainRef x; }]])
137], [
138 AC_MSG_RESULT([yes])
Alexander Afanasyev0d3671a2014-01-02 20:09:59 -0800139 AC_DEFINE_UNQUOTED([HAVE_OSX_SECURITY], 1, [1 if have the OSX framework.])
Alexander Afanasyevd155da42014-01-06 16:03:47 -0800140 AM_CONDITIONAL(HAVE_OSX_SECURITY, true)
Alexander Afanasyev0d3671a2014-01-02 20:09:59 -0800141
142 OSX_SECURITY_LIBS="-framework Security"
143 AC_SUBST([OSX_SECURITY_LIBS])
Jeff Thompson9cf9dfb2013-10-04 16:36:52 -0700144], [
145 AC_MSG_RESULT([no])
Alexander Afanasyevd155da42014-01-06 16:03:47 -0800146 AM_CONDITIONAL(HAVE_OSX_SECURITY, false)
Jeff Thompson9cf9dfb2013-10-04 16:36:52 -0700147])
148
Jeff Thompsonca45e552013-06-26 17:40:06 -0700149DX_HTML_FEATURE(ON)
150DX_CHM_FEATURE(OFF)
151DX_CHI_FEATURE(OFF)
152DX_MAN_FEATURE(OFF)
153DX_RTF_FEATURE(OFF)
154DX_XML_FEATURE(OFF)
155DX_PDF_FEATURE(OFF)
156DX_PS_FEATURE(OFF)
157DX_INIT_DOXYGEN([$PACKAGE_NAME],[Doxyfile])
158
Jeff Thompson6e229042013-10-10 11:09:49 -0700159AC_CONFIG_FILES([Makefile
Alexander Afanasyev7eb64f12014-01-02 18:39:49 -0800160 include/Makefile
Alexander Afanasyevc4b75982014-01-09 14:51:45 -0800161 examples/Makefile
Alexander Afanasyev303b3502014-01-07 12:02:59 -0800162 tools/Makefile
Alexander Afanasyevfad679c2014-01-06 18:09:26 -0800163 tests/Makefile
164 tests_boost/Makefile])
Jeff Thompsonff092f52013-06-19 13:38:12 -0700165AC_OUTPUT