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 | 6e22904 | 2013-10-10 11:09:49 -0700 | [diff] [blame] | 55 | AC_C_INLINE |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 56 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 57 | # Unless --without-c++11 specified, try to enable C++11 |
| 58 | AX_CXX_COMPILE_STDCXX_11(, optional) |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 59 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 60 | AC_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 | |
| 69 | AX_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]) |
| 73 | fi |
| 74 | ], |
| 75 | [] |
| 76 | ) |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 77 | |
Jeff Thompson | ea94620 | 2013-10-18 14:35:32 -0700 | [diff] [blame] | 78 | AC_MSG_CHECKING([for gmtime support]) |
| 79 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
Jeff Thompson | d32bab6 | 2013-10-18 14:55:26 -0700 | [diff] [blame] | 80 | [[#include <time.h>]] |
Jeff Thompson | ea94620 | 2013-10-18 14:35:32 -0700 | [diff] [blame] | 81 | [[#include <sys/time.h>]] |
| 82 | [[struct timeval tv;]] |
| 83 | [[int result1 = gettimeofday(&tv, 0);]] |
| 84 | [[time_t time1 = time(0);]] |
| 85 | [[struct tm* tm1 = gmtime(&time1);]] |
| 86 | [[time_t time2 = timegm(tm1);]]) |
| 87 | ], [ |
| 88 | AC_MSG_RESULT([yes]) |
| 89 | AC_DEFINE_UNQUOTED([HAVE_GMTIME_SUPPORT], 1, [1 if have sys/time gmtime support including timegm.]) |
| 90 | ], [ |
| 91 | AC_MSG_RESULT([no]) |
| 92 | AC_DEFINE_UNQUOTED([HAVE_GMTIME_SUPPORT], 0, [1 if have sys/time gmtime support including timegm.]) |
| 93 | ]) |
| 94 | |
Alexander Afanasyev | 0d3671a | 2014-01-02 20:09:59 -0800 | [diff] [blame] | 95 | # Require openssl (libcrypto). |
| 96 | AX_CHECK_OPENSSL([], [AC_MSG_FAILURE([can't find openssl crypto lib])]) |
Jeff Thompson | d0f62e1 | 2013-10-09 17:41:25 -0700 | [diff] [blame] | 97 | |
Jeff Thompson | bb6b568 | 2013-10-09 18:22:38 -0700 | [diff] [blame] | 98 | # Conditionally use libsqlite3. AX_LIB_SQLITE3 defines HAVE_SQLITE3 in confdefs.h . |
Jeff Thompson | d0f62e1 | 2013-10-09 17:41:25 -0700 | [diff] [blame] | 99 | AX_LIB_SQLITE3() |
Jeff Thompson | bb6b568 | 2013-10-09 18:22:38 -0700 | [diff] [blame] | 100 | if grep -q "#define HAVE_SQLITE3" confdefs.h ; then |
Alexander Afanasyev | 0d3671a | 2014-01-02 20:09:59 -0800 | [diff] [blame] | 101 | AC_CHECK_LIB([sqlite3], [sqlite3_open], [ ], # space necessar to prevent updating LIBS |
Jeff Thompson | f21e224 | 2013-10-09 19:01:49 -0700 | [diff] [blame] | 102 | [AC_MSG_FAILURE([have sqlite2 headers but no libsqlite3])]) |
Jeff Thompson | d0f62e1 | 2013-10-09 17:41:25 -0700 | [diff] [blame] | 103 | fi |
| 104 | |
Jeff Thompson | f21e224 | 2013-10-09 19:01:49 -0700 | [diff] [blame] | 105 | # Conditionally use the OSX Security framework . |
| 106 | AC_MSG_CHECKING([for OSX Security framework]) |
Jeff Thompson | 9cf9dfb | 2013-10-04 16:36:52 -0700 | [diff] [blame] | 107 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
| 108 | [[#include <CoreFoundation/CoreFoundation.h>]] |
| 109 | [[#include <Security/Security.h>]] |
| 110 | [[#include <CoreServices/CoreServices.h>]] |
| 111 | [[void test() { SecKeychainRef x; }]]) |
| 112 | ], [ |
| 113 | AC_MSG_RESULT([yes]) |
Alexander Afanasyev | 0d3671a | 2014-01-02 20:09:59 -0800 | [diff] [blame] | 114 | AC_DEFINE_UNQUOTED([HAVE_OSX_SECURITY], 1, [1 if have the OSX framework.]) |
| 115 | |
| 116 | OSX_SECURITY_LIBS="-framework Security" |
| 117 | AC_SUBST([OSX_SECURITY_LIBS]) |
Jeff Thompson | 9cf9dfb | 2013-10-04 16:36:52 -0700 | [diff] [blame] | 118 | ], [ |
| 119 | AC_MSG_RESULT([no]) |
Jeff Thompson | 9cf9dfb | 2013-10-04 16:36:52 -0700 | [diff] [blame] | 120 | ]) |
| 121 | |
Jeff Thompson | ca45e55 | 2013-06-26 17:40:06 -0700 | [diff] [blame] | 122 | DX_HTML_FEATURE(ON) |
| 123 | DX_CHM_FEATURE(OFF) |
| 124 | DX_CHI_FEATURE(OFF) |
| 125 | DX_MAN_FEATURE(OFF) |
| 126 | DX_RTF_FEATURE(OFF) |
| 127 | DX_XML_FEATURE(OFF) |
| 128 | DX_PDF_FEATURE(OFF) |
| 129 | DX_PS_FEATURE(OFF) |
| 130 | DX_INIT_DOXYGEN([$PACKAGE_NAME],[Doxyfile]) |
| 131 | |
Jeff Thompson | 6e22904 | 2013-10-10 11:09:49 -0700 | [diff] [blame] | 132 | AC_CONFIG_FILES([Makefile |
Alexander Afanasyev | 7eb64f1 | 2014-01-02 18:39:49 -0800 | [diff] [blame] | 133 | include/Makefile |
| 134 | tests/Makefile]) |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 135 | AC_OUTPUT |