OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
doc
/
libfreetype6
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/10/2024 09:42:49 AM
rwxr-xr-x
📄
CMAKE
114 bytes
07/09/2017 10:28:15 AM
rw-r--r--
📄
CUSTOMIZE.gz
2.12 KB
07/09/2017 10:28:15 AM
rw-r--r--
📄
DEBUG.gz
2.87 KB
07/09/2017 10:28:15 AM
rw-r--r--
📄
FTL.TXT.gz
2.81 KB
07/09/2017 10:28:15 AM
rw-r--r--
📄
MAKEPP
255 bytes
07/09/2017 10:28:15 AM
rw-r--r--
📄
PROBLEMS
2.65 KB
07/09/2017 10:28:15 AM
rw-r--r--
📄
TODO
1.33 KB
07/09/2017 10:28:15 AM
rw-r--r--
📄
VERSIONS.TXT.gz
1.75 KB
09/16/2017 12:27:59 PM
rw-r--r--
📄
changelog.Debian.gz
1.94 KB
07/19/2022 04:39:11 PM
rw-r--r--
📄
copyright
18.69 KB
07/19/2022 04:39:11 PM
rw-r--r--
📁
css
-
01/31/2023 12:38:18 PM
rwxr-xr-x
📁
design
-
01/31/2023 12:38:18 PM
rwxr-xr-x
📄
documentation.html
5.3 KB
09/16/2017 05:22:17 PM
rw-r--r--
📄
formats.txt.gz
3.02 KB
07/09/2017 10:28:15 AM
rw-r--r--
📄
freetype-config.1
2.82 KB
09/16/2017 05:05:33 PM
rw-r--r--
📄
ft2faq.html
24.09 KB
09/16/2017 05:22:17 PM
rw-r--r--
📁
glyphs
-
01/31/2023 12:38:18 PM
rwxr-xr-x
📁
image
-
01/31/2023 12:38:18 PM
rwxr-xr-x
📄
index.html
11.7 KB
09/16/2017 05:22:17 PM
rw-r--r--
📁
js
-
01/31/2023 12:38:18 PM
rwxr-xr-x
📁
pcf
-
07/21/2022 06:37:47 AM
rwxr-xr-x
📄
raster.txt.gz
7.5 KB
07/09/2017 10:28:15 AM
rw-r--r--
📁
reference
-
01/31/2023 12:38:18 PM
rwxr-xr-x
📄
release.gz
2.16 KB
07/09/2017 10:28:15 AM
rw-r--r--
📄
subpixel-hinting.html
13.13 KB
09/16/2017 05:22:17 PM
rw-r--r--
📄
text-rendering-general.html
23.41 KB
09/16/2017 05:22:17 PM
rw-r--r--
📁
tutorial
-
01/31/2023 12:38:18 PM
rwxr-xr-x
Editing: PROBLEMS
Close
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. ---------------------------------------------------------------------- Running Problems ================ * Some Type 1, Multiple Masters, and CID-keyed PostScript fonts aren't handled correctly. ----- Of course, there might be bugs in FreeType, but some fonts based on the PostScript format can't be handled indeed. The reason is that FreeType doesn't contain a full PostScript interpreter but applies pattern matching instead. In case a font doesn't follow the standard structure of the given font format, FreeType fails. A typical example is Adobe's `Optima' font family which contains extra code to switch between low and high resolution versions of the glyphs. It might be possible to patch FreeType in some situations, though. Please report failing fonts so that we investigate the problem and set up a list of such problematic fonts. * Why do identical FreeType versions render differently on different platforms? ----- Different distributions compile FreeType with different options. The developer version of a distribution's FreeType package, which is needed to compile your program against FreeType, includes the file ftoption.h. Compare each platform's copy of ftoption.h to find the differences. ---------------------------------------------------------------------- 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: 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.1 Build 20060323Z Package ID: W_CC_P_9.1.022 or newer. If this isn't feasible, apply the following patch. --- 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 = { { ftc_inode_new, ---------------------------------------------------------------------- --- end of PROBLEMS ---