diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-01-15 19:47:27 +0300 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-01-26 07:18:56 +0200 |
commit | b97e37efbca2f5033c9091bce70ba5122ffe3b1a (patch) | |
tree | c1d46effde1daf1f1125a543f8d1109c0c55dbfe | |
parent | ea439a6e0cc920ce78c5bfc1e3b1b35d2e5a3cbb (diff) |
Release version 2.5.0-b.25+12.5.0-b.25+1
- Fix odb/sqlite/details/config.hxx for build2 build. In particular, this
makes sure that the unlock notify and column metadata enabled if available
in SQLite.
-rw-r--r-- | manifest | 2 | ||||
-rw-r--r-- | odb/sqlite/details/config.hxx | 12 | ||||
-rw-r--r-- | odb/sqlite/details/export.hxx | 10 |
3 files changed, 22 insertions, 2 deletions
@@ -1,6 +1,6 @@ : 1 name: libodb-sqlite -version: 2.5.0-b.25 +version: 2.5.0-b.25+1 project: odb summary: SQLite ODB runtime library license: GPL-2.0-only diff --git a/odb/sqlite/details/config.hxx b/odb/sqlite/details/config.hxx index bbf32f6..4f1c5ce 100644 --- a/odb/sqlite/details/config.hxx +++ b/odb/sqlite/details/config.hxx @@ -16,6 +16,18 @@ # endif #endif +// LIBODB_SQLITE_BUILD2 macro can be defined either by the buildfile or by the +// included odb/sqlite/details/config*.h (see above). +// +#ifdef LIBODB_SQLITE_BUILD2 +# include <sqlite3.h> + +# if SQLITE_VERSION_NUMBER >= 3006012 +# define LIBODB_SQLITE_HAVE_UNLOCK_NOTIFY 1 +# endif +# define LIBODB_SQLITE_HAVE_COLUMN_METADATA 1 +#endif + // no post #endif // ODB_SQLITE_DETAILS_CONFIG_HXX diff --git a/odb/sqlite/details/export.hxx b/odb/sqlite/details/export.hxx index 515b891..c0903ae 100644 --- a/odb/sqlite/details/export.hxx +++ b/odb/sqlite/details/export.hxx @@ -6,7 +6,15 @@ #include <odb/pre.hxx> -#include <odb/sqlite/details/config.hxx> +#ifdef ODB_COMPILER +# error libodb-sqlite header included in odb-compiled header +#elif !defined(LIBODB_SQLITE_BUILD2) +# ifdef _MSC_VER +# include <odb/sqlite/details/config-vc.h> +# else +# include <odb/sqlite/details/config.h> +# endif +#endif // Normally we don't export class templates (but do complete specializations), // inline functions, and classes with only inline member functions. Exporting |