diff --git a/src/soci/include/soci/soci-config.h b/src/soci/include/soci/soci-config.h new file mode 100644 index 000000000..1b1680da1 --- /dev/null +++ b/src/soci/include/soci/soci-config.h @@ -0,0 +1,49 @@ +// +// Copyright (C) 2004-2008 Maciej Sobczak, Stephen Hutton +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) +// + +#ifndef SOCICONFIG_H_INCLUDED +#define SOCICONFIG_H_INCLUDED + +// +// SOCI has been build with support for: +// + +// Boost library +#define SOCI_HAVE_BOOST + +// Boost date_time library +/* #undef SOCI_HAVE_BOOST_DATE_TIME */ + +// Enables C++11 support +/* #undef SOCI_HAVE_CXX_C11 */ + +// DB2 backend +/* #undef SOCI_HAVE_DB2 */ + +// EMPTY backend +#define SOCI_HAVE_EMPTY + +// FIREBIRD backend +/* #undef SOCI_HAVE_FIREBIRD */ + +// MYSQL backend +/* #undef SOCI_HAVE_MYSQL */ + +// ODBC backend +/* #undef SOCI_HAVE_ODBC */ + +// ORACLE backend +/* #undef SOCI_HAVE_ORACLE */ + +// POSTGRESQL backend +/* #undef SOCI_HAVE_POSTGRESQL */ + +// SQLITE3 backend +#define SOCI_HAVE_SQLITE3 + + +#endif // SOCICONFIG_H_INCLUDED