summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Laue <brad@gentoo.org>2005-04-16 17:53:46 +0000
committerBrad Laue <brad@gentoo.org>2005-04-16 17:53:46 +0000
commitbae6a3485a48bcc3eb11d3c1a661e182e5419660 (patch)
treeea4f6d81c4f369dfea5fbf85d650db923ff169ce /www-client
parentBump to 1.0.3 (diff)
downloadhistorical-bae6a3485a48bcc3eb11d3c1a661e182e5419660.tar.gz
historical-bae6a3485a48bcc3eb11d3c1a661e182e5419660.tar.bz2
historical-bae6a3485a48bcc3eb11d3c1a661e182e5419660.zip
Remove unneeded patches
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'www-client')
-rw-r--r--www-client/mozilla-firefox/Manifest2
-rw-r--r--www-client/mozilla-firefox/files/firefox-0.8-gcc-3.4.patch11
-rw-r--r--www-client/mozilla-firefox/files/firefox-0.9-nsFormHistory-crash-fix.patch47
3 files changed, 0 insertions, 60 deletions
diff --git a/www-client/mozilla-firefox/Manifest b/www-client/mozilla-firefox/Manifest
index febc7c46cd4d..7c4135a3945f 100644
--- a/www-client/mozilla-firefox/Manifest
+++ b/www-client/mozilla-firefox/Manifest
@@ -15,8 +15,6 @@ MD5 23d1fbd03cc6dd346a4e4ce8f2d88ebf files/mozilla-1.3-alpha-stubs.patch 4646
MD5 48baf2f328e6478812c24e59037ff99c files/firefox-0.9-init.tar.bz2 3322
MD5 606e82226379fd5ae6cd1d0d1faff7ff files/10MozillaFirefox 31
MD5 f48be110754a5106f06cd313c22c4337 files/svg-cairo-0.3.0-fix.patch 1063
-MD5 c6308c086c87ed2e1e4f3d136efdd770 files/firefox-0.9-nsFormHistory-crash-fix.patch 1755
-MD5 3ad7410bd680964096c84eee3fa21abf files/firefox-0.8-gcc-3.4.patch 460
MD5 f0e9adeb0454377ce019e8969e644efb files/mozilla-firebird-amd64.patch 35052
MD5 2cdd03eb2752bc01ba07ad837e926f39 files/icon/mozillafirefox.desktop 168
MD5 bff260036c5dcca45da3218517fb33d8 files/icon/firefox-icon.png 3979
diff --git a/www-client/mozilla-firefox/files/firefox-0.8-gcc-3.4.patch b/www-client/mozilla-firefox/files/firefox-0.8-gcc-3.4.patch
deleted file mode 100644
index 9de10a1fae8c..000000000000
--- a/www-client/mozilla-firefox/files/firefox-0.8-gcc-3.4.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- gfx/public/nsRegion.h.old 2003-03-25 02:57:42.000000000 +0000
-+++ gfx/public/nsRegion.h 2004-04-23 02:25:09.606368256 +0100
-@@ -234,7 +234,7 @@
- void MoveInto (nsRegion& aDestRegion)
- { MoveInto (aDestRegion, mRectListHead.next); }
-
-- nsRegion (const nsRegion& aRegion); // Prevent copying of regions
-+ public:nsRegion (const nsRegion& aRegion); // Prevent copying of regions
- nsRegion& operator = (const nsRegion& aRegion);
- };
-
diff --git a/www-client/mozilla-firefox/files/firefox-0.9-nsFormHistory-crash-fix.patch b/www-client/mozilla-firefox/files/firefox-0.9-nsFormHistory-crash-fix.patch
deleted file mode 100644
index afd4e1691689..000000000000
--- a/www-client/mozilla-firefox/files/firefox-0.9-nsFormHistory-crash-fix.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-Index: toolkit/components/satchel/src/nsFormHistory.cpp
-===================================================================
-RCS file: /cvsroot/mozilla/toolkit/components/satchel/src/nsFormHistory.cpp,v
-retrieving revision 1.13
-diff -u -9 -p -w -r1.13 nsFormHistory.cpp
---- toolkit/components/satchel/src/nsFormHistory.cpp 17 Jun 2004 00:13:16 -0000 1.13
-+++ toolkit/components/satchel/src/nsFormHistory.cpp 24 Jun 2004 06:56:29 -0000
-@@ -734,35 +734,38 @@ nsFormHistory::AutoCompleteSearch(const
- if (RowMatch(row, aInputName, aInputValue, &value)) {
- matchingRows.AppendElement(row);
- matchingValues.AppendElement(value);
- }
- } while (row);
-
- // Turn auto array into flat array for quick sort, now that we
- // know how many items there are
- PRUint32 count = matchingRows.Count();
-+
-+ if (count > 0) {
- PRUint32* items = new PRUint32[count];
- PRUint32 i;
- for (i = 0; i < count; ++i)
- items[i] = i;
-
-- NS_QuickSort(items, count, sizeof(nsIMdbRow*),
-+ NS_QuickSort(items, count, sizeof(PRUint32),
- SortComparison, &matchingValues);
-
- for (i = 0; i < count; ++i) {
- // Place the sorted result into the autocomplete result
- result->AddRow((nsIMdbRow *)matchingRows[items[i]]);
-
- // Free up these strings we owned.
- delete (PRUnichar *) matchingValues[i];
- }
-
- delete[] items;
-+ }
-
- PRUint32 matchCount;
- result->GetMatchCount(&matchCount);
- if (matchCount > 0) {
- result->SetSearchResult(nsIAutoCompleteResult::RESULT_SUCCESS);
- result->SetDefaultIndex(0);
- } else {
- result->SetSearchResult(nsIAutoCompleteResult::RESULT_NOMATCH);
- result->SetDefaultIndex(-1);