Fix PQ_SDBC_DRIVER_VERSION
...which should expand to "0.8.2" rather than "PQ_SDBC_MAJOR.PQ_SDBC_MINOR.PQ_SDBC_MICRO" Change-Id: I4dad1f895d6c1c4daead8d325fa35bfabe651419 Reviewed-on: https://gerrit.libreoffice.org/84766 Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu> Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
@@ -38,7 +38,7 @@
|
|||||||
#define INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_POSTGRESQL_PQ_DRIVER_HXX
|
#define INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_POSTGRESQL_PQ_DRIVER_HXX
|
||||||
|
|
||||||
#include <osl/mutex.hxx>
|
#include <osl/mutex.hxx>
|
||||||
|
#include <sal/macros.h>
|
||||||
#include <cppuhelper/compbase.hxx>
|
#include <cppuhelper/compbase.hxx>
|
||||||
|
|
||||||
#include <com/sun/star/lang/XServiceInfo.hpp>
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
||||||
@@ -51,11 +51,9 @@
|
|||||||
namespace pq_sdbc_driver
|
namespace pq_sdbc_driver
|
||||||
{
|
{
|
||||||
|
|
||||||
#define MY_STRINGIFY( x ) #x
|
#define PQ_SDBC_DRIVER_VERSION SAL_STRINGIFY(PQ_SDBC_MAJOR) "." \
|
||||||
|
SAL_STRINGIFY(PQ_SDBC_MINOR) "." \
|
||||||
#define PQ_SDBC_DRIVER_VERSION MY_STRINGIFY(PQ_SDBC_MAJOR) "." \
|
SAL_STRINGIFY(PQ_SDBC_MICRO)
|
||||||
MY_STRINGIFY(PQ_SDBC_MINOR) "." \
|
|
||||||
MY_STRINGIFY(PQ_SDBC_MICRO)
|
|
||||||
|
|
||||||
struct MutexHolder { osl::Mutex m_mutex; };
|
struct MutexHolder { osl::Mutex m_mutex; };
|
||||||
// use this to switch off sdbc support !
|
// use this to switch off sdbc support !
|
||||||
|
Reference in New Issue
Block a user