diff options
author | Werner Lemberg <wl@gnu.org> | 2006-05-17 08:54:30 +0000 |
---|---|---|
committer | Werner Lemberg <wl@gnu.org> | 2006-05-17 08:54:30 +0000 |
commit | de2d90af6e9b9b719dc152828e26e00d2781bff0 (patch) | |
tree | cdf1f050df1568c62de60b8ec4711b8039c0db25 /docs/PROBLEMS | |
parent | 8ab412d48d9bbf5ea99cb6adadaa7fea92aae618 (diff) | |
download | freetype2-de2d90af6e9b9b719dc152828e26e00d2781bff0.tar.gz |
* src/cff/cffload.c (cff_font_done): Deallocate subfont array. This
fixes the first part of Savannah bug #16590.
* docs/PROBLEMS: Updated icl issues.
Diffstat (limited to 'docs/PROBLEMS')
-rw-r--r-- | docs/PROBLEMS | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/docs/PROBLEMS b/docs/PROBLEMS index fadd9c583..fb0fee0b0 100644 --- a/docs/PROBLEMS +++ b/docs/PROBLEMS @@ -12,19 +12,35 @@ Compilation Problems * I get an `internal compilation error' (ICE) while compiling FreeType 2.2.1 with Intel C++. -This has been reported for the following compiler version: + This has been reported for the following compiler version: + + Intel(R) C++ Compiler for 32-bit applications, + Version 9.0 Build 20050430Z Package ID: W_CC_P_9.0.019 + +----- + +The best solution is to update the compiler to version Intel(R) C++ Compiler for 32-bit applications, - Version 9.0 Build 20050430Z Package ID: W_CC_P_9.0.019 + Version 9.1 Build 20060323Z Package ID: W_CC_P_9.1.022 -A solution to this problem is to apply the following patch. +or newer. If this isn't feasible, apply the following patch. ---- src/cache/ftcbasic.c 2006-03-20 14:34:23.000000000 +0100 -+++ src/cache/ftcbasic.c.patched 2006-04-03 18:39:28.165346008 +0200 +--- src/cache/ftcbasic.c 20 Mar 2006 12:10:24 -0000 1.20 ++++ src/cache/ftcbasic.c.patched 15 May 2006 02:51:02 -0000 +@@ -252,7 +252,7 @@ + */ + + FT_CALLBACK_TABLE_DEF +- const FTC_IFamilyClassRec ftc_basic_image_family_class = ++ FTC_IFamilyClassRec ftc_basic_image_family_class = + { + { + sizeof ( FTC_BasicFamilyRec ), @@ -266,7 +266,7 @@ - - + + FT_CALLBACK_TABLE_DEF - const FTC_GCacheClassRec ftc_basic_image_cache_class = + FTC_GCacheClassRec ftc_basic_image_cache_class = |