diff options
author | Aron Griffis <agriffis@gentoo.org> | 2006-10-15 03:49:51 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2006-10-15 03:49:51 +0000 |
commit | 7ce3b31bdc3e2b034152b63486beadeb13b94e06 (patch) | |
tree | a91e37e8b2131e4d3e776520113d3ef50e6f719b /x11-libs/wxGTK/files | |
parent | Mark 0.4.4-r8 stable on alpha (diff) | |
download | gentoo-2-7ce3b31bdc3e2b034152b63486beadeb13b94e06.tar.gz gentoo-2-7ce3b31bdc3e2b034152b63486beadeb13b94e06.tar.bz2 gentoo-2-7ce3b31bdc3e2b034152b63486beadeb13b94e06.zip |
Add patch for freetype-2.2.1 API compatibility #150383
(Portage version: 2.1.2_pre1)
Diffstat (limited to 'x11-libs/wxGTK/files')
-rw-r--r-- | x11-libs/wxGTK/files/wxGTK-2.4.2-noftinternals.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/x11-libs/wxGTK/files/wxGTK-2.4.2-noftinternals.patch b/x11-libs/wxGTK/files/wxGTK-2.4.2-noftinternals.patch new file mode 100644 index 000000000000..da21124bfba4 --- /dev/null +++ b/x11-libs/wxGTK/files/wxGTK-2.4.2-noftinternals.patch @@ -0,0 +1,44 @@ +--- wxGTK-2.4.2/src/generic/dcpsg.cpp 2006-10-07 15:05:34.000000000 +0200 ++++ wxGTK-2.4.2/src/generic/dcpsg.cpp 2006-10-07 15:08:21.000000000 +0200 +@@ -1146,7 +1146,7 @@ + FILE *file; + }; + +-static int paps_move_to( FT_Vector* to, ++static int paps_move_to( const FT_Vector* to, + void *user_data) + { + OutlineInfo *outline_info = (OutlineInfo*)user_data; +@@ -1156,7 +1156,7 @@ + return 0; + } + +-static int paps_line_to( FT_Vector* to, ++static int paps_line_to( const FT_Vector* to, + void *user_data) + { + OutlineInfo *outline_info = (OutlineInfo*)user_data; +@@ -1166,8 +1166,8 @@ + return 0; + } + +-static int paps_conic_to( FT_Vector* control, +- FT_Vector* to, ++static int paps_conic_to( const FT_Vector* control, ++ const FT_Vector* to, + void *user_data) + { + OutlineInfo *outline_info = (OutlineInfo*)user_data; +@@ -1179,9 +1179,9 @@ + return 0; + } + +-static int paps_cubic_to( FT_Vector* control1, +- FT_Vector* control2, +- FT_Vector* to, ++static int paps_cubic_to( const FT_Vector* control1, ++ const FT_Vector* control2, ++ const FT_Vector* to, + void *user_data) + { + OutlineInfo *outline_info = (OutlineInfo*)user_data; |