diff options
author | maho <maho@FreeBSD.org> | 2006-08-10 16:50:51 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2006-08-10 16:50:51 +0800 |
commit | 4fd873d23bb07d2637ca99f657bd8906a08346ae (patch) | |
tree | 488b9aedd17a8095e8da0970bffb2a2b1f5d78da /editors/openoffice-3-devel | |
parent | 668f6689fa6fe4433484b67db6ab50970c27ffbb (diff) | |
download | freebsd-ports-gnome-4fd873d23bb07d2637ca99f657bd8906a08346ae.tar.gz freebsd-ports-gnome-4fd873d23bb07d2637ca99f657bd8906a08346ae.tar.zst freebsd-ports-gnome-4fd873d23bb07d2637ca99f657bd8906a08346ae.zip |
build fix for amd64.
see http://www.openoffice.org/issues/show_bug.cgi?id=68110
for details.
Submitted by: jack low
Diffstat (limited to 'editors/openoffice-3-devel')
-rw-r--r-- | editors/openoffice-3-devel/files/patch-i68110 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/editors/openoffice-3-devel/files/patch-i68110 b/editors/openoffice-3-devel/files/patch-i68110 new file mode 100644 index 000000000000..f1322eec397f --- /dev/null +++ b/editors/openoffice-3-devel/files/patch-i68110 @@ -0,0 +1,25 @@ +Index: tools/bootstrp/sstring.cxx +=================================================================== +RCS file: /cvs/util/tools/bootstrp/sstring.cxx,v +retrieving revision 1.6 +diff -u -r1.6 sstring.cxx +--- tools/bootstrp/sstring.cxx 2 Aug 2006 12:10:04 -0000 1.6 ++++ tools/bootstrp/sstring.cxx 10 Aug 2006 08:50:06 -0000 +@@ -173,7 +173,7 @@ + + SByteStringList& SByteStringList::operator<< ( SvStream& rStream ) + { +- ULONG nListCount; ++ sal_uInt32 nListCount; + rStream >> nListCount; + for ( USHORT i = 0; i < nListCount; i++ ) { + ByteString* pByteString = new ByteString(); +@@ -185,7 +185,7 @@ + + SByteStringList& SByteStringList::operator>> ( SvStream& rStream ) + { +- ULONG nListCount = Count(); ++ sal_uInt32 nListCount = Count(); + rStream << nListCount; + ByteString* pByteString = First(); + while (pByteString) { |