diff options
Diffstat (limited to 'net-www/mozilla/files')
-rw-r--r-- | net-www/mozilla/files/digest-mozilla-1.0_rc3-r2 | 1 | ||||
-rw-r--r-- | net-www/mozilla/files/mozilla-new-freetype2.patch | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/net-www/mozilla/files/digest-mozilla-1.0_rc3-r2 b/net-www/mozilla/files/digest-mozilla-1.0_rc3-r2 new file mode 100644 index 000000000000..65336be1a206 --- /dev/null +++ b/net-www/mozilla/files/digest-mozilla-1.0_rc3-r2 @@ -0,0 +1 @@ +MD5 f30ac988ec8589285523315ebb8a7732 mozilla-source-1.0rc3.tar.bz2 29626939 diff --git a/net-www/mozilla/files/mozilla-new-freetype2.patch b/net-www/mozilla/files/mozilla-new-freetype2.patch new file mode 100644 index 000000000000..ce703ddf83d7 --- /dev/null +++ b/net-www/mozilla/files/mozilla-new-freetype2.patch @@ -0,0 +1,28 @@ +--- mozilla/other-licenses/Xft/fontconfig/src/fccharset.c Tue May 28 23:06:14 2002 ++++ mozilla.azarah/other-licenses/Xft/fontconfig/src/fccharset.c Tue May 28 23:49:49 2002 +@@ -998,6 +998,7 @@ + const FcCharMap *map; + int o; + int i; ++ int *mytmpvalue; + FT_UInt glyph; + + fcs = FcCharSetCreate (); +@@ -1043,7 +1044,7 @@ + if (FT_Get_Char_Index (face, 0)) + ucs4 = 0; + else +- ucs4 = FT_Get_Next_Char (face, 0); ++ ucs4 = FT_Get_Next_Char (face, 0, mytmpvalue); + + for (;;) + { +@@ -1070,7 +1071,7 @@ + } + ucs4++; + } +- ucs4 = FT_Get_Next_Char (face, ucs4 - 1); ++ ucs4 = FT_Get_Next_Char (face, ucs4 - 1, mytmpvalue); + if (!ucs4) + break; + } |