diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2011-08-02 16:13:35 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2011-11-17 21:15:14 +0100 |
commit | c6a6c00a36a0b827dc5ecfe143681f002a5d351f (patch) | |
tree | e58cbd1f6d4a45a8d7de4aaa9f5130b1ac9a11ee | |
parent | 34592e25791a3ebbe24805bde3a2ac0a447b2089 (diff) |
Apply gcc-4.3-postgresql.diff
6 files changed, 9 insertions, 0 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx b/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx index 1d66a8a2a9d1..5fadf16c093a 100644 --- a/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx +++ b/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx @@ -77,6 +77,8 @@ #include <com/sun/star/sdbc/ResultSetConcurrency.hpp> #include <com/sun/star/sdbc/ResultSetType.hpp> +#include <string.h> + using osl::Mutex; using osl::MutexGuard; diff --git a/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx b/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx index d351b4c26d0e..1c7b76844f40 100644 --- a/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx +++ b/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx @@ -69,6 +69,7 @@ #include <com/sun/star/sdbc/ColumnValue.hpp> #include <com/sun/star/sdbc/XRow.hpp> +#include <string.h> using osl::Mutex; using osl::MutexGuard; diff --git a/connectivity/source/drivers/postgresql/pq_statement.cxx b/connectivity/source/drivers/postgresql/pq_statement.cxx index b60edfc4c129..086cd22ea99c 100644 --- a/connectivity/source/drivers/postgresql/pq_statement.cxx +++ b/connectivity/source/drivers/postgresql/pq_statement.cxx @@ -86,6 +86,7 @@ #include <com/sun/star/container/XIndexAccess.hpp> #include <com/sun/star/container/XEnumerationAccess.hpp> +#include <string.h> using osl::Mutex; using osl::MutexGuard; diff --git a/connectivity/source/drivers/postgresql/pq_statics.cxx b/connectivity/source/drivers/postgresql/pq_statics.cxx index 177571d19fac..71fbbffcd859 100644 --- a/connectivity/source/drivers/postgresql/pq_statics.cxx +++ b/connectivity/source/drivers/postgresql/pq_statics.cxx @@ -64,6 +64,8 @@ #include <com/sun/star/sdbc/DataType.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp> +#include <string.h> + using rtl::OUString; using com::sun::star::uno::Sequence; using com::sun::star::uno::Any; diff --git a/connectivity/source/drivers/postgresql/pq_tools.cxx b/connectivity/source/drivers/postgresql/pq_tools.cxx index c6b16e0e7dcb..1f91984a13c6 100644 --- a/connectivity/source/drivers/postgresql/pq_tools.cxx +++ b/connectivity/source/drivers/postgresql/pq_tools.cxx @@ -16,6 +16,7 @@ #include "pq_statics.hxx" #include <libpq-fe.h> +#include <string.h> using rtl::OUString; using rtl::OUStringBuffer; diff --git a/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx b/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx index 7efa00523a16..6793373f263e 100644 --- a/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx +++ b/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx @@ -12,6 +12,8 @@ #include "pq_tools.hxx" #include "pq_statics.hxx" +#include <string.h> + using osl::MutexGuard; using rtl::OUString; |