diff options
author | taya <taya> | 2004-07-06 13:40:57 +0000 |
---|---|---|
committer | taya <taya> | 2004-07-06 13:40:57 +0000 |
commit | c68fa0668a0985ab299de13cd11a2d680d724fd4 (patch) | |
tree | 9e7a13c338e33e380f884015494b8655ea6a99f2 /mail/thunderbird/patches | |
parent | e61decdfa5384e29533fd42b0d3d51a50cde90d8 (diff) | |
download | pkgsrc-c68fa0668a0985ab299de13cd11a2d680d724fd4.tar.gz |
Update thunderbird to 0.7.1
From the article from mozillazine.org:
mozilla.org today released upgrades to both Firefox 0.9 (0.9.1) and
Thunderbird 0.7 (0.7.1) to fix some minor bugs present in both
releases. Both releases correct some flaws in the extension system
that some users may have been experiencing, as well as a new icon set
for the navigation toolbar on Windows and Linux in Firefox 0.9.1. All
users of both products should get this upgrade.
Diffstat (limited to 'mail/thunderbird/patches')
-rw-r--r-- | mail/thunderbird/patches/patch-by | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/mail/thunderbird/patches/patch-by b/mail/thunderbird/patches/patch-by index 7e2e8fd3954..65e7d988bcb 100644 --- a/mail/thunderbird/patches/patch-by +++ b/mail/thunderbird/patches/patch-by @@ -1,8 +1,27 @@ -$NetBSD: patch-by,v 1.1 2004/06/24 23:09:56 taya Exp $ +$NetBSD: patch-by,v 1.2 2004/07/06 13:40:57 taya Exp $ diff -ru ../Orig/mozilla/layout/svg/renderer/src/libart/nsSVGLibartGlyphMetricsFT.cpp ./layout/svg/renderer/src/libart/nsSVGLibartGlyphMetricsFT.cpp --- ../Orig/mozilla/layout/svg/renderer/src/libart/nsSVGLibartGlyphMetricsFT.cpp 2004-03-19 10:36:16.000000000 +0900 -+++ ./layout/svg/renderer/src/libart/nsSVGLibartGlyphMetricsFT.cpp 2004-06-15 23:57:02.000000000 +0900 ++++ ./layout/svg/renderer/src/libart/nsSVGLibartGlyphMetricsFT.cpp 2004-07-04 22:59:19.000000000 +0900 +@@ -155,15 +155,15 @@ + + static NS_NAMED_LITERAL_STRING(arial, "arial"); + nsSVGLibartGlyphMetricsFT::sFontAliases.Put(NS_LITERAL_STRING("helvetica"), +- &arial); ++ (nsDependentString *)&arial); + + static NS_NAMED_LITERAL_STRING(courier, "courier new"); + nsSVGLibartGlyphMetricsFT::sFontAliases.Put(NS_LITERAL_STRING("courier"), +- &courier); ++ (nsDependentString *)&courier); + + static NS_NAMED_LITERAL_STRING(times, "times new roman"); + nsSVGLibartGlyphMetricsFT::sFontAliases.Put(NS_LITERAL_STRING("times"), +- ×); ++ (nsDependentString *)×); + } + + void NS_FreeSVGLibartGlyphMetricsFTGlobals() @@ -440,19 +440,19 @@ return; } |