summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-p2p/mutella/files')
-rw-r--r--net-p2p/mutella/files/mutella-0.4.5-gcc41.patch10
-rw-r--r--net-p2p/mutella/files/mutella-0.4.5-gcc43.patch48
-rw-r--r--net-p2p/mutella/files/mutella-0.4.5-glibc-2.10.patch26
3 files changed, 0 insertions, 84 deletions
diff --git a/net-p2p/mutella/files/mutella-0.4.5-gcc41.patch b/net-p2p/mutella/files/mutella-0.4.5-gcc41.patch
deleted file mode 100644
index 38c32136f8ed..000000000000
--- a/net-p2p/mutella/files/mutella-0.4.5-gcc41.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- mutella-0.4.5-orig/mutella/gnushare.h 2002-11-15 21:22:57.000000000 +0100
-+++ mutella-0.4.5/mutella/gnushare.h 2006-06-03 19:18:23.000000000 +0200
-@@ -26,6 +26,7 @@
- #include "mthread.h"
-
- class MGnuDirector;
-+class MShareThread;
-
- class MGnuShare
- {
diff --git a/net-p2p/mutella/files/mutella-0.4.5-gcc43.patch b/net-p2p/mutella/files/mutella-0.4.5-gcc43.patch
deleted file mode 100644
index 47ee8a155c59..000000000000
--- a/net-p2p/mutella/files/mutella-0.4.5-gcc43.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -rupN mutella-0.4.5b/mutella/common.h mutella-0.4.5/mutella/common.h
---- mutella-0.4.5b/mutella/common.h 2009-01-26 02:01:11.000000000 -0400
-+++ mutella-0.4.5/mutella/common.h 2009-01-26 02:05:37.000000000 -0400
-@@ -50,7 +50,7 @@ CString restore_string(CString s, bool b
- bool QueryMatch(CString Result, const CString& Query);
- // fast functions which do not copy the string
- void MakeWordList(LPSTR szQuery, vector<char*>& QWords);
--void MakeWordList(LPSTR szQuery, vector<char*>& QWords, vector<char*>& QWords);
-+void MakeWordList(LPSTR szQuery, vector<char*>& QWordsInc, vector<char*>& QWords);
- bool MatchWordList(const CString& ResultLower, const vector<char*>& QWords, bool bMatchAll = true);
-
- // slower but 'storage-independent' versions
-diff -rupN mutella-0.4.5b/mutella/tstring.h mutella-0.4.5/mutella/tstring.h
---- mutella-0.4.5b/mutella/tstring.h 2009-01-26 02:01:11.000000000 -0400
-+++ mutella-0.4.5/mutella/tstring.h 2009-01-26 02:04:00.000000000 -0400
-@@ -23,6 +23,7 @@
-
- #include <stdarg.h>
- #include <iostream>
-+#include <climits>
-
- #ifdef TSTRING_DEBUG
-
-diff -rupN mutella-0.4.5b/mutella/conversions.h mutella-0.4.5/mutella/conversions.h
---- mutella-0.4.5b/mutella/conversions.h 2009-01-26 02:17:42.000000000 -0400
-+++ mutella-0.4.5/mutella/conversions.h 2009-01-26 02:18:25.000000000 -0400
-@@ -19,9 +19,9 @@
- copyright : (C) 2001 by
- email : maksik@gmx.co.uk
- ***************************************************************************/
--
- #if !defined(__CONVERSIONS_H_INCLUDED__)
- #define __CONVERSIONS_H_INCLUDED__
-+#include <cstring>
-
- CString DWrdtoStr(DWORD); // Convert DWORD to a CString
-
-diff -rupN mutella-0.4.5b/mutella/gnumarkedfiles.cpp mutella-0.4.5/mutella/gnumarkedfiles.cpp
---- mutella-0.4.5b/mutella/gnumarkedfiles.cpp 2009-01-26 02:17:42.000000000 -0400
-+++ mutella-0.4.5/mutella/gnumarkedfiles.cpp 2009-01-26 02:18:46.000000000 -0400
-@@ -10,6 +10,7 @@
- #include "config.h"
- #endif
-
-+#include <cstring>
- #include "mutella.h"
- #include "structures.h"
-
diff --git a/net-p2p/mutella/files/mutella-0.4.5-glibc-2.10.patch b/net-p2p/mutella/files/mutella-0.4.5-glibc-2.10.patch
deleted file mode 100644
index 0ef88b6470e2..000000000000
--- a/net-p2p/mutella/files/mutella-0.4.5-glibc-2.10.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -ur mutella-0.4.5.old/mutella/uiremote.cpp mutella-0.4.5/mutella/uiremote.cpp
---- mutella-0.4.5.old/mutella/uiremote.cpp 2009-07-09 04:38:28.583840188 +0300
-+++ mutella-0.4.5/mutella/uiremote.cpp 2009-07-09 04:40:48.955839846 +0300
-@@ -575,11 +575,11 @@
- {
- // login -- HTTP-Basic so far
- bool bLoginOK = false;
-- char * pszAuth = NULL;
-+ const char * pszAuth = NULL;
- if ( (pszAuth = strstr(szHandshake, "Authorization:")) )
- {
- // extract authorization line
-- char * pRN = strstr(pszAuth, "\r\n");
-+ const char * pRN = strstr(pszAuth, "\r\n");
- CString sAuthLine(pszAuth + strlen("Authorization:"), pRN-pszAuth-strlen("Authorization:"));
- int nPos = sAuthLine.find("Basic");
- if (nPos>=0)
-@@ -616,7 +616,7 @@
- const char* pszCookie;
- if( (pszCookie = strstr(szHandshake, "Cookie:")) )
- {
-- char * pRN = strstr(pszCookie, "\r\n");
-+ const char * pRN = strstr(pszCookie, "\r\n");
- CString sCookieLine(pszCookie + strlen("Cookie:"), pRN-pszCookie-strlen("Cookie:"));
- // we will split the line by "; " combination
- list<CString> Cookies;