From 764b25145a80570fee8da099daa05c4dbb8bf83b Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Mon, 3 Apr 2006 16:42:39 +0000 Subject: [PATCH] * docs/PROBLEMS: New file. --- ChangeLog | 3 +++ docs/PROBLEMS | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 docs/PROBLEMS diff --git a/ChangeLog b/ChangeLog index db42447cd..e20c6bfa7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,9 @@ * configure.ac: Minor fixes to improve --help output. + + * docs/PROBLEMS: New file. + 2006-04-01 David Turner * docs/CHANGES: Updated. diff --git a/docs/PROBLEMS b/docs/PROBLEMS new file mode 100644 index 000000000..90d0e813d --- /dev/null +++ b/docs/PROBLEMS @@ -0,0 +1,36 @@ +This file describes various problems that have been encountered in +compiling, installing and running FreeType 2. Suggestions for additions or +other improvements to this file are welcome. + +--------------------------------------------------------------------------- + + +Compilation Problems +==================== + + +* I get an `internal compilation error' (ICE) while compiling FreeType 2.2.0 + with Intel C++. + +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 + +A solution to this problem is to 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 +@@ -266,7 +266,7 @@ + + + FT_CALLBACK_TABLE_DEF +- const FTC_GCacheClassRec ftc_basic_image_cache_class = ++ FTC_GCacheClassRec ftc_basic_image_cache_class = + { + { + ftc_inode_new, + + +---------------------------------------------------------------------------