summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2010-03-22 08:53:48 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2010-03-22 08:53:48 +0000
commitc2af13bb246f79e98ea07af74d03126af0df336e (patch)
treef5956b83bff9afe9d3f9964e1030bad8f0bbaf11 /dev-db/libodbc++/files
parentRemove USE="qt3" wrt #246932 by Yaroslav Gorbunov. (diff)
downloadgentoo-2-c2af13bb246f79e98ea07af74d03126af0df336e.tar.gz
gentoo-2-c2af13bb246f79e98ea07af74d03126af0df336e.tar.bz2
gentoo-2-c2af13bb246f79e98ea07af74d03126af0df336e.zip
old
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/libodbc++/files')
-rw-r--r--dev-db/libodbc++/files/libodbc++-0.2.3-gcc43.patch11
-rw-r--r--dev-db/libodbc++/files/libodbc++-0.2.3-std-streamsize.patch11
-rw-r--r--dev-db/libodbc++/files/libodbc++-0.2.3-typecast.patch22
3 files changed, 0 insertions, 44 deletions
diff --git a/dev-db/libodbc++/files/libodbc++-0.2.3-gcc43.patch b/dev-db/libodbc++/files/libodbc++-0.2.3-gcc43.patch
deleted file mode 100644
index fe76162715d0..000000000000
--- a/dev-db/libodbc++/files/libodbc++-0.2.3-gcc43.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- libodbc++-0.2.3/include/odbc++/types.h.orig 2008-06-14 16:39:35.000000000 +0000
-+++ libodbc++-0.2.3/include/odbc++/types.h 2008-06-14 16:39:58.000000000 +0000
-@@ -25,6 +25,7 @@
- #include <odbc++/setup.h>
-
- #include <exception>
-+#include <cstring>
-
- #if !defined(ODBCXX_QT)
- # include <string>
-
diff --git a/dev-db/libodbc++/files/libodbc++-0.2.3-std-streamsize.patch b/dev-db/libodbc++/files/libodbc++-0.2.3-std-streamsize.patch
deleted file mode 100644
index 197388982745..000000000000
--- a/dev-db/libodbc++/files/libodbc++-0.2.3-std-streamsize.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- libodbc++-0.2.3/src/datastream.h 2003-04-21 09:28:38.000000000 -0700
-+++ libodbc++-0.2.3/src/datastream.h 2006-01-03 12:24:13.000000000 -0800
-@@ -63,7 +63,7 @@
- return 0;
- }
-
-- virtual int showmanyc() {
-+ virtual std::streamsize showmanyc() {
- if(this->gptr() < this->egptr()) {
- return this->egptr() - this->gptr();
- }
diff --git a/dev-db/libodbc++/files/libodbc++-0.2.3-typecast.patch b/dev-db/libodbc++/files/libodbc++-0.2.3-typecast.patch
deleted file mode 100644
index 39ab72c16f16..000000000000
--- a/dev-db/libodbc++/files/libodbc++-0.2.3-typecast.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/libodbc++-0.2.3/src/preparedstatement.cpp 2001-06-12 11:38:32.000000000 +0100
-+++ b/libodbc++-0.2.3/src/preparedstatement.cpp 2006-09-29 12:28:42.000000000 +0100
-@@ -303,7 +303,7 @@
- r=SQLParamData(hstmt_,&currentCol);
- this->_checkStmtError(hstmt_,r,"SQLParamData failure");
- if(r==SQL_NEED_DATA) {
-- DataHandler* dh=rowset_->getColumn((int)currentCol);
-+ DataHandler* dh=rowset_->getColumn((long)currentCol);
-
- assert(dh->isStreamed_);
-
---- a/libodbc++-0.2.3/src/resultset.cpp 2003-06-17 10:58:45.000000000 +0100
-+++ b/libodbc++-0.2.3/src/resultset.cpp 2006-09-29 12:38:58.000000000 +0100
-@@ -528,7 +528,7 @@
- r=SQLParamData(hstmt_,&currentCol);
- this->_checkStmtError(hstmt_,r,"SQLParamData failure");
- if(r==SQL_NEED_DATA) {
-- DataHandler* dh=rowset_->getColumn((int)currentCol);
-+ DataHandler* dh=rowset_->getColumn((long)currentCol);
-
- assert(dh->isStreamed_);
-