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 | |
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')
4 files changed, 0 insertions, 60 deletions
diff --git a/kde-base/kdelibs/files/digest-kdelibs-3.1.5-r1 b/kde-base/kdelibs/files/digest-kdelibs-3.1.5-r1 deleted file mode 100644 index c5a8b320325e..000000000000 --- a/kde-base/kdelibs/files/digest-kdelibs-3.1.5-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 6e33c0f7c124e77d807da0ddb537b369 kdelibs-3.1.5.tar.bz2 10549741 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; - } diff --git a/kde-base/kdelibs/files/post-3.1.5-kdelibs-kapplication.patch b/kde-base/kdelibs/files/post-3.1.5-kdelibs-kapplication.patch deleted file mode 100644 index 5faf96350812..000000000000 --- a/kde-base/kdelibs/files/post-3.1.5-kdelibs-kapplication.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- kdecore/kapplication.cpp 11 Jan 2004 15:45:02 -0000 1.545.2.21 -+++ kdecore/kapplication.cpp 14 May 2004 12:27:23 -0000 -@@ -1907,7 +1907,7 @@ void KApplication::invokeMailer(const QS - - if (command.isEmpty() || command == QString::fromLatin1("kmail") - || command.right(6) == "/kmail") -- command = QString::fromLatin1("kmail --composer -s %s -c %c -b %b --body %B --attach %A %t"); -+ command = QString::fromLatin1("kmail --composer -s %s -c %c -b %b --body %B --attach %A -- %t"); - - // TODO: Take care of the preferred terminal app (instead of hardcoding - // Konsole), this will probably require a rewrite of the configurable diff --git a/kde-base/kdelibs/files/post-3.1.5-kdelibs-ktelnetservice.patch b/kde-base/kdelibs/files/post-3.1.5-kdelibs-ktelnetservice.patch deleted file mode 100644 index af7855465949..000000000000 --- a/kde-base/kdelibs/files/post-3.1.5-kdelibs-ktelnetservice.patch +++ /dev/null @@ -1,29 +0,0 @@ -Index: ktelnetservice.cpp -=================================================================== -RCS file: /home/kde/kdelibs/kio/misc/ktelnetservice.cpp,v -retrieving revision 1.3.2.2 -diff -u -p -r1.3.2.2 ktelnetservice.cpp ---- kio/misc/ktelnetservice.cpp 31 Mar 2003 09:13:55 -0000 1.3.2.2 -+++ kio/misc/ktelnetservice.cpp 13 May 2004 15:12:00 -0000 -@@ -68,10 +68,19 @@ int main(int argc, char **argv) - cmd << url.user(); - } - -+ QString host; - if (!url.host().isEmpty()) -- cmd << url.host(); // telnet://host -+ host = url.host(); // telnet://host - else if (!url.path().isEmpty()) -- cmd << url.path(); // telnet:host -+ host = url.path(); // telnet:host -+ -+ if (host.isEmpty() || host.startsWith("-")) -+ { -+ kdError() << "Invalid hostname " << host << endl; -+ return 2; -+ } -+ -+ cmd << host; - - if (url.port()) - cmd << QString::number(url.port()); |