• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

builds/22-Nov-2023-53,80147,436

devel/22-Nov-2023-969106

docs/22-Nov-2023-8,1715,694

include/22-Nov-2023-37,03810,005

objs/22-Nov-2023-75

src/22-Nov-2023-187,946120,062

.gitD01-Jan-19700

.gitignoreD22-Nov-202323 32

.mailmapD22-Nov-2023678 109

Android.bpD22-Nov-20231.8 KiB7766

CMakeLists.txtD22-Nov-202312.3 KiB458396

ChangeLogD22-Nov-2023152.4 KiB5,0653,206

ChangeLog.20D22-Nov-202389.4 KiB2,6141,832

ChangeLog.21D22-Nov-2023321.4 KiB9,4396,874

ChangeLog.22D22-Nov-202397.5 KiB2,8381,987

ChangeLog.23D22-Nov-2023266 KiB7,9495,475

ChangeLog.24D22-Nov-2023202.5 KiB6,3614,209

ChangeLog.25D22-Nov-2023158.5 KiB5,1623,353

ChangeLog.26D22-Nov-2023172.2 KiB5,7123,590

ChangeLog.27D22-Nov-202361.6 KiB2,1071,322

CleanSpec.mkD22-Nov-20232.2 KiB521

JamfileD22-Nov-20235.9 KiB223181

JamrulesD22-Nov-20231.4 KiB7259

MODULE_LICENSE_BSD_LIKED22-Nov-20230

MakefileD22-Nov-2023842 355

NOTICED22-Nov-20236.7 KiB174127

READMED22-Nov-20232.4 KiB8552

README.androidD22-Nov-2023975 3426

README.gitD22-Nov-20231.6 KiB5132

README.versionD22-Nov-2023183 43

autogen.shD22-Nov-20233.8 KiB166112

configureD22-Nov-20233.8 KiB13698

libft2.map.txtD22-Nov-2023261 1413

modules.cfgD22-Nov-20236.9 KiB271216

version.sedD22-Nov-2023236 63

vms_make.comD22-Nov-202335 KiB1,287796

README

1  FreeType 2.9
2  ============
3
4  Homepage: https://www.freetype.org
5
6  FreeType is a freely available software library to render fonts.
7
8  It  is  written  in  C,  designed to  be  small,  efficient,  highly
9  customizable, and  portable while capable of  producing high-quality
10  output  (glyph  images) of  most  vector  and bitmap  font  formats.
11
12  Please   read   the  docs/CHANGES   file,   it  contains   IMPORTANT
13  INFORMATION.
14
15  Read the  files `docs/INSTALL*'  for installation  instructions; see
16  the file `docs/LICENSE.TXT' for the available licenses.
17
18  The FreeType 2 API reference is located in `docs/reference'; use the
19  file   `ft2-toc.html'   as   the   top  entry   point.    Additional
20  documentation is available as a separate package from our sites.  Go
21  to
22
23    https://download.savannah.gnu.org/releases/freetype/
24
25  and download one of the following files.
26
27    freetype-doc-2.9.tar.bz2
28    freetype-doc-2.9.tar.gz
29    ftdoc29.zip
30
31  To view the documentation online, go to
32
33    https://www.freetype.org/freetype2/documentation.html
34
35
36  Mailing Lists
37  =============
38
39  The preferred way  of communication with the FreeType  team is using
40  e-mail lists.
41
42    general use and discussion:      freetype@nongnu.org
43    engine internals, porting, etc.: freetype-devel@nongnu.org
44    announcements:                   freetype-announce@nongnu.org
45    git repository tracker:          freetype-commit@nongnu.org
46
47  The lists are moderated; see
48
49    https://www.freetype.org/contact.html
50
51  how to subscribe.
52
53
54  Bugs
55  ====
56
57  Please submit bug reports at
58
59    https://savannah.nongnu.org/bugs/?group=freetype
60
61  Alternatively,    you   might    report    bugs    by   e-mail    to
62  `freetype-devel@nongnu.org'.   Don't  forget   to  send  a  detailed
63  explanation of the problem --  there is nothing worse than receiving
64  a terse message that only says `it doesn't work'.
65
66
67  Enjoy!
68
69
70    The FreeType Team
71
72----------------------------------------------------------------------
73
74Copyright 2006-2018 by
75David Turner, Robert Wilhelm, and Werner Lemberg.
76
77This  file is  part of  the FreeType  project, and  may only  be used,
78modified,  and distributed  under the  terms of  the  FreeType project
79license,  LICENSE.TXT.  By  continuing to  use, modify,  or distribute
80this file you  indicate that you have read  the license and understand
81and accept it fully.
82
83
84--- end of README ---
85

README.android

1Freetype
2
3There are the following local modifications:
4
5The following modules are disabled in include/freetype/config/ftmodule.h:
6  t1
7  t1cid
8  pfr
9  t42
10  winfnt
11  pcf
12  bdf
13
14The following options are disabled in include/freetype/config/ftoption.h:
15
16  FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES
17  FT_CONFIG_OPTION_INCREMENTAL
18  TT_CONFIG_OPTION_SUBPIXEL_HINTING
19
20The following option is enabled to support color fonts.
21
22  FT_CONFIG_OPTION_USE_PNG
23
24HOW TO UPDATE
25* Check out external/freetype to <checkout_dir>
26  ex: git clone https://android.googlesource.com/platform/external/freetype
27* Locate the commit you'd like to move.
28  ex: for 2.8.1: http://git.savannah.gnu.org/cgit/freetype/freetype2.git/commit/?h=VER-2-8-1&id=39ce3ac499d4cd7371031a062f410953c8ecce29
29* In <checkout_dir>, run git merge <commit_sha>
30  i.e. git merge 39ce3ac499d4cd7371031a062f410953c8ecce29
31* Upload the changes.
32  ex: git push origin HEAD:refs/for/master
33* Gerrit will run the text related tests.
34

README.git

1The git  archive doesn't  contain pre-built configuration  scripts for
2UNIXish platforms.  To generate them say
3
4  sh autogen.sh
5
6which in turn depends on the following packages:
7
8  automake (1.10.1)
9  libtool (2.2.4)
10  autoconf (2.62)
11
12The versions given  in parentheses are known to  work.  Newer versions
13should work too, of course.   Note that autogen.sh also sets up proper
14file permissions for the `configure' and auxiliary scripts.
15
16The autogen.sh script  now checks the version of  above three packages
17whether they match the numbers  above.  Otherwise it will complain and
18suggest either upgrading or using  an environment variable to point to
19a more recent version of the required tool(s).
20
21Note that  `aclocal' is provided  by the `automake' package  on Linux,
22and that `libtoolize' is called `glibtoolize' on Darwin (OS X).
23
24
25For static builds which  don't use platform specific optimizations, no
26configure script is necessary at all; saying
27
28  make setup ansi
29  make
30
31should work on all platforms which have GNU make (or makepp).
32
33
34Similarly, a  build with  `cmake' can  be done  directly from  the git
35repository.
36
37
38----------------------------------------------------------------------
39
40Copyright 2005-2018 by
41David Turner, Robert Wilhelm, and Werner Lemberg.
42
43This  file is  part of  the FreeType  project, and  may only  be used,
44modified,  and distributed  under the  terms of  the  FreeType project
45license,  LICENSE.TXT.  By  continuing to  use, modify,  or distribute
46this file you  indicate that you have read  the license and understand
47and accept it fully.
48
49
50--- end of README.git ---
51

README.version

1URL: http://git.savannah.gnu.org/cgit/freetype/freetype2.git/commit/?id=036bdc0c9a4fb55b4fe5a7276e97b70b95c8a260
2Version: 036bdc0c9a4fb55b4fe5a7276e97b70b95c8a260
3BugComponent: 75970
4