diff options
author | Dan Armak <danarmak@gentoo.org> | 2005-01-17 14:40:06 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2005-01-17 14:40:06 +0000 |
commit | 4cce04729c3b618860dd63b40a3d503710c161e2 (patch) | |
tree | 0ee966fc649081f55c548a3f05632fd9b534936e /kde-base/kdelibs/files/kdelibs-3.1.5-kjs-alphaev6-gcc3-workaround.patch | |
parent | Fixed file collision with kdelibs. (diff) | |
download | historical-4cce04729c3b618860dd63b40a3d503710c161e2.tar.gz historical-4cce04729c3b618860dd63b40a3d503710c161e2.tar.bz2 historical-4cce04729c3b618860dd63b40a3d503710c161e2.zip |
removing kde 3.1.x
Package-Manager: portage-2.0.51-r13
Diffstat (limited to 'kde-base/kdelibs/files/kdelibs-3.1.5-kjs-alphaev6-gcc3-workaround.patch')
-rw-r--r-- | kde-base/kdelibs/files/kdelibs-3.1.5-kjs-alphaev6-gcc3-workaround.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/kde-base/kdelibs/files/kdelibs-3.1.5-kjs-alphaev6-gcc3-workaround.patch b/kde-base/kdelibs/files/kdelibs-3.1.5-kjs-alphaev6-gcc3-workaround.patch deleted file mode 100644 index 930776d23a51..000000000000 --- a/kde-base/kdelibs/files/kdelibs-3.1.5-kjs-alphaev6-gcc3-workaround.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- kjs/ustring.cpp.orig 2003-01-23 15:49:49.000000000 -0500 -+++ kjs/ustring.cpp 2003-01-27 19:49:00.000000000 -0500 -@@ -421,8 +421,15 @@ - { - double d = toDouble(); - bool b = true; -+ /* useless temporary variable to work around gcc optimization bug */ -+ bool nan = false; - -- if (isNaN(d) || d != static_cast<unsigned long>(d)) { -+ if (isNaN(d)) { -+ d = 0; -+ nan = true; -+ } -+ -+ if (nan || d != static_cast<unsigned long>(d)) { - b = false; - d = 0; - } |