Jeff Thompson | 18f43e1 | 2013-11-21 12:45:12 -0800 | [diff] [blame] | 1 | # To build using autotools, see the Development section of the file INSTALL. |
Jeff Thompson | b752300 | 2013-10-09 10:25:00 -0700 | [diff] [blame] | 2 | |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 3 | AC_PREREQ([2.59]) |
Jeff Thompson | 93a2416 | 2013-09-27 13:28:13 -0700 | [diff] [blame] | 4 | AC_INIT([ndn-cpp], [0.2], [ndn-lib@lists.cs.ucla.edu], [ndn-cpp], [https://github.com/named-data/ndn-cpp]) |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 5 | AM_INIT_AUTOMAKE([1.10 -Wall no-define foreign]) |
| 6 | |
Jeff Thompson | 23cb742 | 2013-10-09 16:11:47 -0700 | [diff] [blame] | 7 | AC_CONFIG_MACRO_DIR([m4]) |
Jeff Thompson | 5d16a90 | 2013-10-10 11:15:14 -0700 | [diff] [blame] | 8 | AC_CONFIG_SRCDIR([configure.ac]) |
Jeff Thompson | 6e22904 | 2013-10-10 11:09:49 -0700 | [diff] [blame] | 9 | # Create config.h without prefixes. Put it in the include directory so CFLAGS will have -I./include . |
| 10 | AC_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. |
| 12 | AX_PREFIX_CONFIG_H(include/ndn-cpp/ndn-cpp-config.h) |
Jeff Thompson | 47053ad | 2013-08-05 10:36:53 -0700 | [diff] [blame] | 13 | AM_MAINTAINER_MODE |
Jeff Thompson | 3b3aabf | 2013-06-21 16:50:20 -0700 | [diff] [blame] | 14 | AM_PROG_AR |
Jeff Thompson | 4f03164 | 2013-08-05 11:03:16 -0700 | [diff] [blame] | 15 | AC_PROG_LIBTOOL |
Jeff Thompson | 23cb742 | 2013-10-09 16:11:47 -0700 | [diff] [blame] | 16 | LT_PREREQ([2.2]) |
| 17 | LT_INIT() |
Jeff Thompson | 4f03164 | 2013-08-05 11:03:16 -0700 | [diff] [blame] | 18 | AC_PROG_CXX |
Jeff Thompson | 1a1b4c0 | 2013-06-28 22:28:51 -0700 | [diff] [blame] | 19 | AM_PROG_CC_C_O |
Jeff Thompson | fcc4daa | 2013-10-01 14:52:23 -0700 | [diff] [blame] | 20 | AC_PROG_OBJCXX |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 21 | AC_LANG([C++]) |
Jeff Thompson | b18b6eb | 2013-10-11 18:28:50 -0700 | [diff] [blame] | 22 | |
| 23 | # Special case. |
| 24 | case "$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 | ;; |
| 38 | esac |
| 39 | |
Jeff Thompson | 32a2333 | 2013-10-07 18:39:00 -0700 | [diff] [blame] | 40 | AC_TYPE_SIZE_T |
| 41 | AC_TYPE_INT8_T |
| 42 | AC_TYPE_INT16_T |
| 43 | AC_TYPE_INT32_T |
| 44 | AC_TYPE_INT64_T |
| 45 | AC_TYPE_UINT8_T |
| 46 | AC_TYPE_UINT16_T |
| 47 | AC_TYPE_UINT32_T |
| 48 | AC_TYPE_UINT64_T |
Jeff Thompson | ea94620 | 2013-10-18 14:35:32 -0700 | [diff] [blame] | 49 | AC_CHECK_FUNCS([memcmp] [memcpy] [memset]) |
| 50 | AC_CHECK_FUNCS([strchr], :, AC_MSG_ERROR([*** strchr not found. Check 'config.log' for more details.])) |
| 51 | AC_CHECK_FUNCS([sscanf], :, AC_MSG_ERROR([*** sscanf not found. Check 'config.log' for more details.])) |
Jeff Thompson | d32bab6 | 2013-10-18 14:55:26 -0700 | [diff] [blame] | 52 | AC_CHECK_HEADERS([time.h], :, AC_MSG_ERROR([*** time.h not found. Check 'config.log' for more details.])) |
Jeff Thompson | ea94620 | 2013-10-18 14:35:32 -0700 | [diff] [blame] | 53 | AC_CHECK_HEADERS([sys/time.h], :, AC_MSG_ERROR([*** sys/time.h not found. Check 'config.log' for more details.])) |
| 54 | AC_CHECK_FUNCS([gettimeofday], :, AC_MSG_ERROR([*** gettimeofday not found. processEvents requires it. Check 'config.log' for more details.])) |
Jeff Thompson | 1b8f4c9 | 2013-06-19 16:18:46 -0700 | [diff] [blame] | 55 | AX_CXX_COMPILE_STDCXX_11(, optional) |
Jeff Thompson | 6e22904 | 2013-10-10 11:09:49 -0700 | [diff] [blame] | 56 | AC_C_INLINE |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 57 | |
| 58 | AC_MSG_CHECKING([for std::shared_ptr]) |
| 59 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
| 60 | [[#include <memory>]] |
| 61 | [[std::shared_ptr<int> have_shared_ptr;]]) |
| 62 | ], [ |
| 63 | AC_MSG_RESULT([yes]) |
| 64 | AC_DEFINE_UNQUOTED([HAVE_STD_SHARED_PTR], 1, [1 if have the `std::shared_ptr' class.]) |
| 65 | ], [ |
| 66 | AC_MSG_RESULT([no]) |
| 67 | AC_DEFINE_UNQUOTED([HAVE_STD_SHARED_PTR], 0, [1 if have the `std::shared_ptr' class.]) |
| 68 | ]) |
Jeff Thompson | 9e9ea9f | 2013-06-22 10:31:18 -0700 | [diff] [blame] | 69 | AC_MSG_CHECKING([for boost::shared_ptr]) |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 70 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
| 71 | [[#include <boost/shared_ptr.hpp>]] |
| 72 | [[boost::shared_ptr<int> have_shared_ptr;]]) |
| 73 | ], [ |
| 74 | AC_MSG_RESULT([yes]) |
| 75 | AC_DEFINE_UNQUOTED([HAVE_BOOST_SHARED_PTR], 1, [1 if have the `boost::shared_ptr' class.]) |
| 76 | ], [ |
| 77 | AC_MSG_RESULT([no]) |
| 78 | AC_DEFINE_UNQUOTED([HAVE_BOOST_SHARED_PTR], 0, [1 if have the `boost::shared_ptr' class.]) |
| 79 | ]) |
| 80 | |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 81 | AC_MSG_CHECKING([for std::function]) |
| 82 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
| 83 | [[#include <functional>]] |
| 84 | [[std::function<int> have_function();]]) |
| 85 | ], [ |
| 86 | AC_MSG_RESULT([yes]) |
| 87 | AC_DEFINE_UNQUOTED([HAVE_STD_FUNCTION], 1, [1 if have the `std::function' class.]) |
| 88 | ], [ |
| 89 | AC_MSG_RESULT([no]) |
| 90 | AC_DEFINE_UNQUOTED([HAVE_STD_FUNCTION], 0, [1 if have the `std::function' class.]) |
| 91 | ]) |
| 92 | AC_MSG_CHECKING([for boost::function]) |
| 93 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
| 94 | [[#include <boost/function.hpp>]] |
| 95 | [[boost::function<int> have_function();]]) |
| 96 | ], [ |
| 97 | AC_MSG_RESULT([yes]) |
| 98 | AC_DEFINE_UNQUOTED([HAVE_BOOST_FUNCTION], 1, [1 if have the `boost::function' class.]) |
| 99 | ], [ |
| 100 | AC_MSG_RESULT([no]) |
| 101 | AC_DEFINE_UNQUOTED([HAVE_BOOST_FUNCTION], 0, [1 if have the `boost::function' class.]) |
| 102 | ]) |
| 103 | |
Jeff Thompson | ea94620 | 2013-10-18 14:35:32 -0700 | [diff] [blame] | 104 | AC_MSG_CHECKING([for gmtime support]) |
| 105 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
Jeff Thompson | d32bab6 | 2013-10-18 14:55:26 -0700 | [diff] [blame] | 106 | [[#include <time.h>]] |
Jeff Thompson | ea94620 | 2013-10-18 14:35:32 -0700 | [diff] [blame] | 107 | [[#include <sys/time.h>]] |
| 108 | [[struct timeval tv;]] |
| 109 | [[int result1 = gettimeofday(&tv, 0);]] |
| 110 | [[time_t time1 = time(0);]] |
| 111 | [[struct tm* tm1 = gmtime(&time1);]] |
| 112 | [[time_t time2 = timegm(tm1);]]) |
| 113 | ], [ |
| 114 | AC_MSG_RESULT([yes]) |
| 115 | AC_DEFINE_UNQUOTED([HAVE_GMTIME_SUPPORT], 1, [1 if have sys/time gmtime support including timegm.]) |
| 116 | ], [ |
| 117 | AC_MSG_RESULT([no]) |
| 118 | AC_DEFINE_UNQUOTED([HAVE_GMTIME_SUPPORT], 0, [1 if have sys/time gmtime support including timegm.]) |
| 119 | ]) |
| 120 | |
Jeff Thompson | d0f62e1 | 2013-10-09 17:41:25 -0700 | [diff] [blame] | 121 | # Require libcrypto. |
| 122 | AC_CHECK_LIB([crypto], [EVP_EncryptInit], [], |
| 123 | [AC_MSG_FAILURE([can't find openssl crypto lib])]) |
| 124 | |
Jeff Thompson | bb6b568 | 2013-10-09 18:22:38 -0700 | [diff] [blame] | 125 | # Conditionally use libsqlite3. AX_LIB_SQLITE3 defines HAVE_SQLITE3 in confdefs.h . |
Jeff Thompson | d0f62e1 | 2013-10-09 17:41:25 -0700 | [diff] [blame] | 126 | AX_LIB_SQLITE3() |
Jeff Thompson | bb6b568 | 2013-10-09 18:22:38 -0700 | [diff] [blame] | 127 | if grep -q "#define HAVE_SQLITE3" confdefs.h ; then |
Jeff Thompson | f21e224 | 2013-10-09 19:01:49 -0700 | [diff] [blame] | 128 | AC_CHECK_LIB([sqlite3], [sqlite3_open], [], |
| 129 | [AC_MSG_FAILURE([have sqlite2 headers but no libsqlite3])]) |
Jeff Thompson | d0f62e1 | 2013-10-09 17:41:25 -0700 | [diff] [blame] | 130 | fi |
| 131 | |
Jeff Thompson | f21e224 | 2013-10-09 19:01:49 -0700 | [diff] [blame] | 132 | # Conditionally use the OSX Security framework . |
| 133 | AC_MSG_CHECKING([for OSX Security framework]) |
Jeff Thompson | 9cf9dfb | 2013-10-04 16:36:52 -0700 | [diff] [blame] | 134 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
| 135 | [[#include <CoreFoundation/CoreFoundation.h>]] |
| 136 | [[#include <Security/Security.h>]] |
| 137 | [[#include <CoreServices/CoreServices.h>]] |
| 138 | [[void test() { SecKeychainRef x; }]]) |
| 139 | ], [ |
| 140 | AC_MSG_RESULT([yes]) |
Jeff Thompson | f21e224 | 2013-10-09 19:01:49 -0700 | [diff] [blame] | 141 | HAVE_OSX_SECURITY=1 |
Jeff Thompson | 9cf9dfb | 2013-10-04 16:36:52 -0700 | [diff] [blame] | 142 | ], [ |
| 143 | AC_MSG_RESULT([no]) |
Jeff Thompson | f21e224 | 2013-10-09 19:01:49 -0700 | [diff] [blame] | 144 | HAVE_OSX_SECURITY=0 |
Jeff Thompson | 9cf9dfb | 2013-10-04 16:36:52 -0700 | [diff] [blame] | 145 | ]) |
Jeff Thompson | f21e224 | 2013-10-09 19:01:49 -0700 | [diff] [blame] | 146 | AC_DEFINE_UNQUOTED([HAVE_OSX_SECURITY], $HAVE_OSX_SECURITY, [1 if have the OSX framework.]) |
| 147 | if test "$HAVE_OSX_SECURITY" == "1" ; then |
| 148 | LIBS="$LIBS -framework Security" |
| 149 | fi |
Jeff Thompson | 9cf9dfb | 2013-10-04 16:36:52 -0700 | [diff] [blame] | 150 | |
Jeff Thompson | ca45e55 | 2013-06-26 17:40:06 -0700 | [diff] [blame] | 151 | DX_HTML_FEATURE(ON) |
| 152 | DX_CHM_FEATURE(OFF) |
| 153 | DX_CHI_FEATURE(OFF) |
| 154 | DX_MAN_FEATURE(OFF) |
| 155 | DX_RTF_FEATURE(OFF) |
| 156 | DX_XML_FEATURE(OFF) |
| 157 | DX_PDF_FEATURE(OFF) |
| 158 | DX_PS_FEATURE(OFF) |
| 159 | DX_INIT_DOXYGEN([$PACKAGE_NAME],[Doxyfile]) |
| 160 | |
Jeff Thompson | 6e22904 | 2013-10-10 11:09:49 -0700 | [diff] [blame] | 161 | AC_CONFIG_FILES([Makefile |
| 162 | include/Makefile]) |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 163 | AC_OUTPUT |