diff options
author | adamw <adamw@FreeBSD.org> | 2005-01-21 09:11:38 +0000 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2005-01-21 09:11:38 +0000 |
commit | 6075e4914fe7ca3a5c03a7ca293ccc4e4509b2eb (patch) | |
tree | a4aee7a84eb9a658510dfaefa530420f7fd043a6 /www/mozilla-devel | |
parent | 12bfae50f4d7e7d6c65b5bd198f989f5bf927232 (diff) | |
download | FreeBSD-ports-6075e4914fe7ca3a5c03a7ca293ccc4e4509b2eb.zip FreeBSD-ports-6075e4914fe7ca3a5c03a7ca293ccc4e4509b2eb.tar.gz |
Remove unneeded patch.
Diffstat (limited to 'www/mozilla-devel')
-rw-r--r-- | www/mozilla-devel/Makefile | 4 | ||||
-rw-r--r-- | www/mozilla-devel/files/extra-patch-nsSVGLibartGlyphMetricsFT.cpp | 42 |
2 files changed, 0 insertions, 46 deletions
diff --git a/www/mozilla-devel/Makefile b/www/mozilla-devel/Makefile index 9d54be6..038fafd 100644 --- a/www/mozilla-devel/Makefile +++ b/www/mozilla-devel/Makefile @@ -199,10 +199,6 @@ FAKEDIR= ${WRKDIR}/fake CONFIGURE_ARGS+= --enable-reorder .endif -.if ${OSVERSION} < 500035 && !defined(WITH_CAIRO_RENDER) -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-nsSVGLibartGlyphMetricsFT.cpp -.endif - .if defined(WITH_SMB) USE_GNOME+= gnomevfs2 .else diff --git a/www/mozilla-devel/files/extra-patch-nsSVGLibartGlyphMetricsFT.cpp b/www/mozilla-devel/files/extra-patch-nsSVGLibartGlyphMetricsFT.cpp deleted file mode 100644 index a1c0265..0000000 --- a/www/mozilla-devel/files/extra-patch-nsSVGLibartGlyphMetricsFT.cpp +++ /dev/null @@ -1,42 +0,0 @@ ---- layout/svg/renderer/src/libart/nsSVGLibartGlyphMetricsFT.cpp.orig Sat Jul 24 23:59:16 2004 -+++ layout/svg/renderer/src/libart/nsSVGLibartGlyphMetricsFT.cpp Sun Jul 25 00:04:20 2004 -@@ -56,6 +56,12 @@ - #include "nsArray.h" - #include "nsDataHashtable.h" - -+#ifdef HAVE_CPP_2BYTE_WCHAR_T -+ typedef nsDependentString nsLiteralString; -+#else -+ typedef NS_ConvertASCIItoUTF16 nsLiteralString; -+#endif -+ - /** - * \addtogroup libart_renderer Libart Rendering Engine - * @{ -@@ -112,7 +118,7 @@ - nsCOMPtr<nsISVGGlyphMetricsSource> mSource; - - public: -- static nsDataHashtable<nsStringHashKey,const nsDependentString*> sFontAliases; -+ static nsDataHashtable<nsStringHashKey,const nsLiteralString*> sFontAliases; - }; - - /** @} */ -@@ -120,7 +126,7 @@ - //---------------------------------------------------------------------- - // nsSVGLibartGlyphMetricsFT implementation: - --nsDataHashtable<nsStringHashKey,const nsDependentString*> -+nsDataHashtable<nsStringHashKey,const nsLiteralString*> - nsSVGLibartGlyphMetricsFT::sFontAliases; - - -@@ -406,7 +412,7 @@ - } - else { - // try alias if there is one: -- const nsDependentString *alias = nsnull; -+ const nsLiteralString *alias = nsnull; - nsSVGLibartGlyphMetricsFT::sFontAliases.Get(NS_ConvertUTF8toUCS2(family_name), - &alias); - if (alias) { |