diff options
author | taya <taya> | 2004-07-05 14:25:29 +0000 |
---|---|---|
committer | taya <taya> | 2004-07-05 14:25:29 +0000 |
commit | 667082aeec7ad79541502d23fc6aa0e0a2668b33 (patch) | |
tree | 5d888aadac9db8ad0286cb61969c579c83573d0f /www/firefox/patches | |
parent | 47b5a097c48a18a3558b8c743f6ae30c72b17a05 (diff) | |
download | pkgsrc-667082aeec7ad79541502d23fc6aa0e0a2668b33.tar.gz |
- correct MESSAGE
- add patch to fix compilation problem on NetBSD-1.6.2
- bump PKGREVISION
Diffstat (limited to 'www/firefox/patches')
-rw-r--r-- | www/firefox/patches/patch-by | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/www/firefox/patches/patch-by b/www/firefox/patches/patch-by index a232c4196f6..1ac283b7b66 100644 --- a/www/firefox/patches/patch-by +++ b/www/firefox/patches/patch-by @@ -1,8 +1,27 @@ -$NetBSD: patch-by,v 1.1 2004/06/23 16:47:12 taya Exp $ +$NetBSD: patch-by,v 1.2 2004/07/05 14:25:29 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; } |