diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-04 14:02:12 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-04 14:02:12 +0200 |
commit | acba5c43f189dfddef4992371fadaa6f019a8027 (patch) | |
tree | a10ac88a6ab8f84c33a3a19cf092feddb802ee7f /configure.ac | |
parent | b3fa74d407c8a7bdc39c381137612a2d94c58831 (diff) |
Add Boost profile example
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 530b490..019afd3 100644 --- a/configure.ac +++ b/configure.ac @@ -38,6 +38,21 @@ LIBODB([], [AC_MSG_ERROR([libodb is not found; consider using --with-libodb=DIR] # TR1_MEMORY +# Check for boost. +# +odb_example_boost=yes +LIBBOOST([], [odb_example_boost=no]) +LIBBOOST_SMART_PTR([], [odb_example_boost=no]) +LIBBOOST_UNORDERED([], [odb_example_boost=no]) +LIBBOOST_DATE_TIME([], [odb_example_boost=no]) +LIBBOOST_SYSTEM + +# Check for libodb-boost. +# +LIBODB_BOOST([], [odb_example_boost=no]) + +AM_CONDITIONAL([ODB_EXAMPLES_BOOST], [test x$odb_example_boost != xno]) + # Check which database we are using. # DATABASE |