File: README.VTK.txt

package info (click to toggle)
vtk 5.0.2-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 51,080 kB
  • ctags: 67,442
  • sloc: cpp: 522,627; ansic: 221,292; tcl: 43,377; python: 14,072; perl: 3,102; java: 1,436; yacc: 1,033; sh: 469; lex: 248; makefile: 181; asm: 154
file content (48 lines) | stat: -rw-r--r-- 1,349 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
This directory contains a subset of the Freetype library (2.1.9) + some recent
updates made to the cache subsystem.

We only include enough of the distribution to provide the functionalities
required by VTK.

We would like to thank the Freetype team for distributing this library.
http://www.freetype.org

Modifications
-------------
builds\win32\freetype\config\ftoption.h: 
  new file, created from include\freetype\config\ftoption.h, used to 
  support DLL build for Windows

builds\unix\ftconfig.h.in: 
  new file, created from ftconfig.in, use CMake vars

include\ft2build.h:
  added:
#if defined(VTKFREETYPE)
#include "vtkFreeTypeConfig.h"
#endif

include\freetype\config\ftoption.h:
builds\win32\freetype\config\ftoption.h: 
  comment out FT_CONFIG_OPTION_USE_ZLIB and FT_CONFIG_OPTION_USE_LZW:
/* #define FT_CONFIG_OPTION_USE_ZLIB */
/* #define FT_CONFIG_OPTION_USE_LZW */

---- DO NOT APPLY ANYMORE BUT KEEP AN EYE ON MAC -------
src\base\ftmac.c:
  added: 
#if defined(FT_USE_CARBON_HEADER)
#include <Carbon/Carbon.h>
#else
[...]
#endif
---- DO NOT APPLY ANYMORE BUT KEEP AN EYE ON MAC -------
    
---- DO NOT APPLY ANYMORE BUT KEEP AN EYE ON MAC -------
src\raster\ftrend1.c:
  replaced:
   pitch = ( ( width + 15 ) >> 4 ) << 1;
  by the old code:
   pitch = ( width + 7 ) >> 3;
---- DO NOT APPLY ANYMORE BUT KEEP AN EYE ON MAC -------