Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 89874 Details for
Bug 137684
nvu can't compile using gcc4 and freetyp-2.1.10 (or above)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
this patch could solve the problem
nvu-1.0-r4.gcc4.FT_Vector.patch (text/plain), 1.80 KB, created by
Zhang Le (RETIRED)
on 2006-06-22 21:18:04 UTC
(
hide
)
Description:
this patch could solve the problem
Filename:
MIME Type:
Creator:
Zhang Le (RETIRED)
Created:
2006-06-22 21:18:04 UTC
Size:
1.80 KB
patch
obsolete
>--- mozilla/gfx/src/ps/nsType1.cpp.orig 2006-06-23 11:01:59.328071792 +0800 >+++ mozilla/gfx/src/ps/nsType1.cpp 2006-06-23 11:06:23.113970240 +0800 >@@ -81,8 +81,8 @@ > int wmode; > } FT2PT1_info; > >-static int cubicto(FT_Vector *aControlPt1, FT_Vector *aControlPt2, >- FT_Vector *aEndPt, void *aClosure); >+static int cubicto(const FT_Vector *aControlPt1, const FT_Vector *aControlPt2, >+ const FT_Vector *aEndPt, void *aClosure); > static int Type1CharStringCommand(unsigned char **aBufPtrPtr, int aCmd); > static int Type1EncodeCharStringInt(unsigned char **aBufPtrPtr, int aValue); > >@@ -173,7 +173,7 @@ > } > > static PRBool >-sideWidthAndBearing(FT_Vector *aEndPt, FT2PT1_info *aFti) >+sideWidthAndBearing(const FT_Vector *aEndPt, FT2PT1_info *aFti) > { > int aw = 0; > int ah = 0; >@@ -216,7 +216,7 @@ > } > > static int >-moveto(FT_Vector *aEndPt, void *aClosure) >+moveto(const FT_Vector *aEndPt, void *aClosure) > { > FT2PT1_info *fti = (FT2PT1_info *)aClosure; > FT_UShort upm = fti->face->units_per_EM; >@@ -253,7 +253,7 @@ > } > > static int >-lineto(FT_Vector *aEndPt, void *aClosure) >+lineto(const FT_Vector *aEndPt, void *aClosure) > { > FT2PT1_info *fti = (FT2PT1_info *)aClosure; > FT_UShort upm = fti->face->units_per_EM; >@@ -279,7 +279,7 @@ > } > > static int >-conicto(FT_Vector *aControlPt, FT_Vector *aEndPt, void *aClosure) >+conicto(const FT_Vector *aControlPt, const FT_Vector *aEndPt, void *aClosure) > { > FT2PT1_info *ftinfo = (FT2PT1_info *)aClosure; > FT_UShort upm = ftinfo->face->units_per_EM; >@@ -311,7 +311,7 @@ > } > > static int >-cubicto(FT_Vector *aControlPt1, FT_Vector *aControlPt2, FT_Vector *aEndPt, >+cubicto(const FT_Vector *aControlPt1, const FT_Vector *aControlPt2, const FT_Vector *aEndPt, > void *aClosure) > { > FT2PT1_info *ftinfo = (FT2PT1_info *)aClosure;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 137684
: 89874