diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2006-09-30 18:14:31 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2006-09-30 18:14:31 +0000 |
commit | 24e7f5d51c47a872ba7a5e15b0bcac87564e0dd2 (patch) | |
tree | 877c104bc7533eb90617af8c98c5dd11447e5673 /dev-db/libodbc++/files | |
parent | Fix a typo in the ewarn message for bug #149609. (diff) | |
download | gentoo-2-24e7f5d51c47a872ba7a5e15b0bcac87564e0dd2.tar.gz gentoo-2-24e7f5d51c47a872ba7a5e15b0bcac87564e0dd2.tar.bz2 gentoo-2-24e7f5d51c47a872ba7a5e15b0bcac87564e0dd2.zip |
Bug #103105 - migrate away from libtermcap-compat. Bug #149533 - compile fix for newer GCC.
(Portage version: 2.1.2_pre2)
Diffstat (limited to 'dev-db/libodbc++/files')
4 files changed, 29 insertions, 0 deletions
diff --git a/dev-db/libodbc++/files/digest-libodbc++-0.2.3 b/dev-db/libodbc++/files/digest-libodbc++-0.2.3 index 424216231d25..3b13b4fc83af 100644 --- a/dev-db/libodbc++/files/digest-libodbc++-0.2.3 +++ b/dev-db/libodbc++/files/digest-libodbc++-0.2.3 @@ -1 +1,3 @@ MD5 92cb6171e5235324c710d89cd271eff9 libodbc++-0.2.3.tar.gz 450097 +RMD160 dc6f8cad2a10d028a4a40099c453528ab093e605 libodbc++-0.2.3.tar.gz 450097 +SHA256 06f93e2f828eeedaa51be51b65c8bb9324b52ce2e39530da6f9ce43f91991758 libodbc++-0.2.3.tar.gz 450097 diff --git a/dev-db/libodbc++/files/digest-libodbc++-0.2.3-r1 b/dev-db/libodbc++/files/digest-libodbc++-0.2.3-r1 index 424216231d25..3b13b4fc83af 100644 --- a/dev-db/libodbc++/files/digest-libodbc++-0.2.3-r1 +++ b/dev-db/libodbc++/files/digest-libodbc++-0.2.3-r1 @@ -1 +1,3 @@ MD5 92cb6171e5235324c710d89cd271eff9 libodbc++-0.2.3.tar.gz 450097 +RMD160 dc6f8cad2a10d028a4a40099c453528ab093e605 libodbc++-0.2.3.tar.gz 450097 +SHA256 06f93e2f828eeedaa51be51b65c8bb9324b52ce2e39530da6f9ce43f91991758 libodbc++-0.2.3.tar.gz 450097 diff --git a/dev-db/libodbc++/files/digest-libodbc++-0.2.3-r2 b/dev-db/libodbc++/files/digest-libodbc++-0.2.3-r2 new file mode 100644 index 000000000000..3b13b4fc83af --- /dev/null +++ b/dev-db/libodbc++/files/digest-libodbc++-0.2.3-r2 @@ -0,0 +1,3 @@ +MD5 92cb6171e5235324c710d89cd271eff9 libodbc++-0.2.3.tar.gz 450097 +RMD160 dc6f8cad2a10d028a4a40099c453528ab093e605 libodbc++-0.2.3.tar.gz 450097 +SHA256 06f93e2f828eeedaa51be51b65c8bb9324b52ce2e39530da6f9ce43f91991758 libodbc++-0.2.3.tar.gz 450097 diff --git a/dev-db/libodbc++/files/libodbc++-0.2.3-typecast.patch b/dev-db/libodbc++/files/libodbc++-0.2.3-typecast.patch new file mode 100644 index 000000000000..39ab72c16f16 --- /dev/null +++ b/dev-db/libodbc++/files/libodbc++-0.2.3-typecast.patch @@ -0,0 +1,22 @@ +--- 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_,¤tCol); + 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_,¤tCol); + 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_); + |