diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-04 13:56:09 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-04 13:56:09 +0200 |
commit | f1c2a621ac2695dfe4a3bc71dbc9ce3079008d2f (patch) | |
tree | d0c45ecd5489cd1b4beb57fc5afda3263ad0d2b2 /configure.ac | |
parent | 6a07b88cdf6419440b19e7b7dbc9231519c32c62 (diff) |
Add support for smart-ptr, unordered, and date_time (basic)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e2834da..0060d99 100644 --- a/configure.ac +++ b/configure.ac @@ -28,9 +28,14 @@ LT_OUTPUT # THREADS +# Check for boost. +# +LIBBOOST([],[AC_MSG_ERROR([boost is not found; consider using CPPFLAGS/LDFLAGS or --with-boost=DIR to specify its location])]) +LIBBOOST_SYSTEM + # Check for libodb. # -LIBODB([],[AC_MSG_ERROR([libodb is not found; consider using --with-libodb=DIR])]) +LIBODB([], [AC_MSG_ERROR([libodb is not found; consider using --with-libodb=DIR])]) # Define LIBODB_BOOST_STATIC_LIB if we are build static library on certain # platforms. |