diff options
author | Caleb Tennis <caleb@gentoo.org> | 2004-09-09 15:42:13 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2004-09-09 15:42:13 +0000 |
commit | bd6811f001f762e2a6040a38a3f3861f10ce0244 (patch) | |
tree | a4bb55152afa2da41b1991a0c81a6f97c0fd665f /kde-base/arts/files | |
parent | Remove stale versions, mark 3.3.0 x86 stable (diff) | |
download | historical-bd6811f001f762e2a6040a38a3f3861f10ce0244.tar.gz historical-bd6811f001f762e2a6040a38a3f3861f10ce0244.tar.bz2 historical-bd6811f001f762e2a6040a38a3f3861f10ce0244.zip |
remove old version
Diffstat (limited to 'kde-base/arts/files')
-rw-r--r-- | kde-base/arts/files/arts-1.2.1-buffer.patch | 27 | ||||
-rw-r--r-- | kde-base/arts/files/digest-arts-1.2.1 | 1 |
2 files changed, 0 insertions, 28 deletions
diff --git a/kde-base/arts/files/arts-1.2.1-buffer.patch b/kde-base/arts/files/arts-1.2.1-buffer.patch deleted file mode 100644 index b8bb4a94ec9f..000000000000 --- a/kde-base/arts/files/arts-1.2.1-buffer.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- mcop/buffer.cc.orig 2004-03-24 14:51:23.586055192 +0100 -+++ mcop/buffer.cc 2004-03-24 14:56:14.054897216 +0100 -@@ -87,9 +87,8 @@ - void Buffer::writeFloat(float f) { - // FIXME: on some machines this may fail badly (there is explicit - // float marshalling and demarshalling code in mico/orb/util.cc) -- -- long *f_as_long = (long *)&f; -- writeLong(*f_as_long); -+ union { float f; long l; } u = {f}; -+ writeLong(u.l); - } - - void Buffer::writeFloatSeq(const std::vector<float>& seq) { -@@ -252,9 +251,10 @@ - float Buffer::readFloat() - { - // FIXME: see writeFloat() -- long f_as_long = readLong(); -+ union {float f; long l; } u; -+ u.l = readLong(); - -- if(!_readError) return *(float *)&f_as_long; -+ if(!_readError) return u.f; - return 0.0; - } - diff --git a/kde-base/arts/files/digest-arts-1.2.1 b/kde-base/arts/files/digest-arts-1.2.1 deleted file mode 100644 index c0963f093e32..000000000000 --- a/kde-base/arts/files/digest-arts-1.2.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 84877632917893438c629803e7b004f3 arts-1.2.1.tar.bz2 1039479 |