diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2006-01-15 22:34:36 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2006-01-15 22:34:36 +0000 |
commit | cea2893ec0e11d93427a56444dfd089477548721 (patch) | |
tree | 9d55d638d94bf0f3bb4de939db44fa41c67652ea /dev-db/libodbc++/files | |
parent | gcc-4+ppc workaround (diff) | |
download | historical-cea2893ec0e11d93427a56444dfd089477548721.tar.gz historical-cea2893ec0e11d93427a56444dfd089477548721.tar.bz2 historical-cea2893ec0e11d93427a56444dfd089477548721.zip |
Fix compilation on amd64 with patch by Dan Hirsch <thequux AT gmail DOT com>; bug #117652
Package-Manager: paludis-0.1.0 svn 68:104M/
Diffstat (limited to 'dev-db/libodbc++/files')
-rw-r--r-- | dev-db/libodbc++/files/libodbc++-0.2.3-std-streamsize.patch | 11 |
1 files changed, 11 insertions, 0 deletions
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 new file mode 100644 index 000000000000..197388982745 --- /dev/null +++ b/dev-db/libodbc++/files/libodbc++-0.2.3-std-streamsize.patch @@ -0,0 +1,11 @@ +--- 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(); + } |