diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-12-09 16:20:59 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-12-09 17:27:47 +0100 |
commit | 0940261be357bfaa42d06444e91e7b3e6735e8d8 (patch) | |
tree | c7f38a6a4b062936a2b7876d885dac4004979a98 /connectivity | |
parent | 7ba2d77dc2b920978f6084ae6223b6828f32bcd3 (diff) |
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>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/postgresql/pq_driver.hxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_driver.hxx b/connectivity/source/drivers/postgresql/pq_driver.hxx index de41bc9ed38e..4cd0ee736a31 100644 --- a/connectivity/source/drivers/postgresql/pq_driver.hxx +++ b/connectivity/source/drivers/postgresql/pq_driver.hxx @@ -38,7 +38,7 @@ #define INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_POSTGRESQL_PQ_DRIVER_HXX #include <osl/mutex.hxx> - +#include <sal/macros.h> #include <cppuhelper/compbase.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> @@ -51,11 +51,9 @@ namespace pq_sdbc_driver { -#define MY_STRINGIFY( x ) #x - -#define PQ_SDBC_DRIVER_VERSION MY_STRINGIFY(PQ_SDBC_MAJOR) "." \ - MY_STRINGIFY(PQ_SDBC_MINOR) "." \ - MY_STRINGIFY(PQ_SDBC_MICRO) +#define PQ_SDBC_DRIVER_VERSION SAL_STRINGIFY(PQ_SDBC_MAJOR) "." \ + SAL_STRINGIFY(PQ_SDBC_MINOR) "." \ + SAL_STRINGIFY(PQ_SDBC_MICRO) struct MutexHolder { osl::Mutex m_mutex; }; // use this to switch off sdbc support ! |