|
3009417a
|
2009-07-15T12:57:26
|
|
Borland C++ compiler patch proposed by Mirco Babin.
|
|
b2967734
|
2009-07-14T16:44:06
|
|
Fix Savannah bug #27026.
* builds/win32/vc2005/freetype.sln: Use correct version number.
|
|
fee19a78
|
2009-06-27T17:07:14
|
|
Add tools to preprocess the source files for AtariST PureC.
|
|
20fb1463
|
2009-06-27T14:27:55
|
|
Improve configure.raw for cross-building on exe-suffixed systems.
|
|
ae342dab
|
2009-06-20T06:01:57
|
|
builds/compiler/gcc.mk (CFLAGS): Use -O3, not -O6.
|
|
b3511ebb
|
2009-04-21T22:51:07
|
|
Fix AC_CHECK_FT2.
Only check PATH for freetype-config if we did not already find it from a
prefix option.
|
|
8b819254
|
2009-03-19T08:30:49
|
|
Update WinCE Visual C project files.
* builds/wince/vc2005-ce/freetype.vcproj,
builds/wince/vc2008-ce/freetype.vcproj: Add missing base extension
files.
|
|
a9ba23c8
|
2009-03-19T08:27:59
|
|
Remove unused Win32 code.
* builds/wince/ftdebug.c: Remove code guarded with `!_WIN32_WCE'.
Since Win32 is handled separately this is no longer needed.
|
|
80c253f9
|
2009-03-19T08:05:06
|
|
Remove unused WinCE code.
* builds/win32/ftdebug.c: Remove code guarded with `_WIN32_WCE'.
Since WinCE is handled separately this is no longer needed.
|
|
2cd5dce8
|
2009-03-15T00:58:25
|
|
Use __asm__ for declaring assembly instead of asm.
* builds/unix/ftconfig.in (FT_MulFix_arm): Use __asm__ instead of
asm on arm, fixing a build failure on armel with -pedantic.
|
|
a284ab62
|
2009-03-12T08:11:12
|
|
* builds/unix/freetype2.in: Move @FT2_EXTRA_LIBS@ to `Libs.private'.
|
|
911f4319
|
2009-03-11T07:07:37
|
|
Fix Savannah bug #25814.
* builds/unix/freetype2.in: As suggested in the bug report, move
@LIBZ@ to `Libs.private'.
|
|
31f5bbba
|
2009-03-10T11:54:51
|
|
Restructure Win32 and Wince compiler support.
* src/builds/win32: Remove files for WinCE.
Move VC 2005 support to a separate directory.
Add directory for VC 2008 support.
* src/builds/wince: New directory hierarchy for WinCE compilers
(VC 2005 and VC 2008).
|
|
1a5edf7a
|
2009-03-09T08:36:18
|
|
* builds/unix/configure.raw (version_info): Set to 9:20:3.
|
|
1e859924
|
2009-02-15T07:54:35
|
|
Fix Savannah bug #25588.
* builds/unix/ftconfig.in (FT_MulFix_arm): Use correct syntax for
`orr' instruction.
|
|
67bbcbd7
|
2009-02-04T07:59:16
|
|
Fix Savannah bug #25480.
* builds/unix/freetype-config.in: For --ftversion, don't use $prefix
but $includedir.
|
|
5184ed6d
|
2009-01-22T10:13:59
|
|
Move FT_Get_FSType_Flags to a separate file.
Problem reported by Mickey Gabel <mickey@monfort.co.il>.
* src/base/ftobjs.c (FT_Get_FSType_Flags): Move to...
* src/base/ftfstype.c: This new file.
* modules.cfg (BASE_EXTENSION): Add ftfstype.c.
* docs/INSTALL.ANY: Updated.
* builds/mac/*.txt, builds/amiga/*makefile*,
builds/win32/{visualc,visualce}/freetype.*, builds/symbian/*:
Updated.
|
|
a7c5de59
|
2009-01-22T04:00:32
|
|
* builds/unix/ftsystem.c: Fix 2 error messages ending without LINEFEED
|
|
e22dd0b8
|
2009-01-14T06:52:18
|
|
* Version 2.3.8 released.
=========================
Tag sources with `VER-2-3-8'.
* docs/VERSION.DLL: Update documentation and bump version number to
2.3.8.
* README, Jamfile (RefDoc), builds/win32/visualc/index.html,
builds/win32/visualc/freetype.dsp,
builds/win32/visualc/freetype.vcproj,
builds/win32/visualce/index.html,
builds/win32/visualce/freetype.dsp,
builds/win32/visualce/freetype.vcproj: s/2.3.7/2.3.8/, s/237/238/.
* include/freetype/freetype.h (FREETYPE_PATCH): Set to 8.
* builds/unix/configure.raw (version_info): Set to 9:19:3.
* docs/release: Updated.
|
|
fb4ddb27
|
2009-01-14T05:30:56
|
|
builds/toplevel.mk (dist): Compress better.
|
|
c679115f
|
2009-01-06T07:07:39
|
|
Fix AC_CANONICAL_XXX issue.
* builds/unix/configure.raw: Don't call AC_CANONICAL_BUILD and
AC_CANONICAL_TARGET and use $host_os only. A nice explanation for
this change can be found at
http://blog.flameeyes.eu/s/canonical-target.
From Savannah patch #6712.
|
|
66043b1c
|
2008-12-22T18:09:48
|
|
* builds/unix/ftsystem.c (FT_Stream_Open): Reject zero-length files.
Patch from Savannah bug #25151.
|
|
ce33a312
|
2008-12-21T10:29:30
|
|
FT_USE_MODULE declares things as:
extern const FT_Module_Class
(or similar for C++). However, the actual types of the variables
being declared are often different, e.g., FT_Driver_ClassRec or
FT_Renderer_Class. (Some are, indeed, FT_Module_Class.)
This works with most C compilers (since those structs begin with an
FT_Module_Class struct), but technically it's undefined behavior.
To quote the ISO/IEC 9899:TC2 final committee draft, section 6.2.7
paragraph 2:
All declarations that refer to the same object or function shall
have compatible type; otherwise, the behavior is undefined.
(And they are not compatible types.)
Most C compilers don't reject (or even detect!) code which has this
issue, but the GCC LTO development branch compiler does. (It
outputs the types of the objects while generating .o files, along
with a bunch of other information, then compares them when doing the
final link-time code generation pass.)
Patch from Savannah bug #25133.
* src/base/ftinit.c (FT_USE_MODULE): Include variable type.
* builds/amiga/include/freetype/config/ftmodule.h,
include/freetype/config/ftmodule.h, */module.mk: Updated to declare
pass correct types to FT_USE_MODULE.
|
|
96d87bed
|
2008-10-05T03:08:10
|
|
{src/base,builds/mac}/ftobjs.c: Include FT_TRUETYPE_TAGS_H for multi build
|
|
21bd5165
|
2008-10-04T18:10:28
|
|
Introduce macros for some MacOS-specific resource tags
|
|
45489589
|
2008-10-04T11:39:03
|
|
* src/base/ftobjs.c (open_face_PS_from_sfnt_stream): Remove compiler
warnings.
Formatting.
|
|
1137d04f
|
2008-10-04T07:11:58
|
|
* New function `open_face_PS_from_sfnt_stream' to check and open a Type1 PS or CID-keyed font in an sfnt stream.
|
|
9e2b9900
|
2008-10-03T11:52:22
|
|
* Remove duplicated functions from builds/mac/ftmac.c. Now MPW builds builds/mac/ftmac.c as a part of ftbase.c
|
|
89a1a518
|
2008-10-02T06:48:10
|
|
* builds/freetype.mk (BASE_H): Rename to...
(INTERNAL_H): This.
(FREETYPE_H): Updated.
* src/base/rules.mk: (BASE_OBJ_S, OBJ_DIR/%.$O): Add BASE_H.
* src/bdf/rules.mk (BDF_DRV_H): Add bdferror.h.
* src/cache/rules.mk (CACHE_DRV_H): Add ftccache.h and ftcsbits.h.
* src/pcf/rules.mk (PCF_DRV_H): Add pcfread.h.
* src/raster/rules.mk (RASTER_DRV_H): Add ftmisc.h.
* src/type42/rules.mk (T42_DRV_H): Add t42types.h.
|
|
fce4e239
|
2008-10-01T04:41:46
|
|
Formatting.
|
|
ef4a915e
|
2008-09-30T16:21:07
|
|
* Fix make rules for multi build on Mac OS X
|
|
3afbee82
|
2008-09-19T17:46:01
|
|
* ftmac.c: Import sfnt-wrapped Type1/CID font support
|
|
b211651a
|
2008-09-12T16:27:48
|
|
* autogen.sh, builds/unix/configure.raw,
include/freetype/config/ftconfig.h, builds/unix/ftconfig.in: Minor
beautifying.
* include/freetype/ftadvanc.h, include/freetype/ftgasp.h,
include/freetype/ftlcdfil.h: Protect against FreeType 1.
Some other minor fixes.
* devel/ftoption.h: Synchronize with
include/freetype/config/ftoption.h.
Formatting, documentation improvements.
|
|
59188661
|
2008-09-11T08:02:23
|
|
* Fix Savannah bug #21250: builds/unix/configure installs bi-arch ftconfig.h if it works correctly
|
|
8e29645e
|
2008-09-05T03:21:21
|
|
* builds/unix/configure.raw: Clear FT2_EXTRA_LIBS when Mac OS X frameworks are missing
|
|
f47d263f
|
2008-09-02T02:21:58
|
|
* include/freetype/ftoption.h, include/freetype/ftconfig.h,
builds/unix/ftconfig.in, include/freetype/freetype.h,
src/base/ftcalc.c:
Make FT_MulFix an inlined function. Also provide an assembler
implementation for ARM architectures. this is done to speedup
FreeType a little (on x86 3% when loading+hinting, 10% when
rendering, ARM savings are more important though).
Disable this by undefining FT_CONFIG_OPTION_INLINE_MULFIX in
ftconfig.h
|
|
77f73585
|
2008-08-19T04:53:02
|
|
Formatting.
|
|
fdc2d761
|
2008-08-18T06:02:07
|
|
* src/base/ftmac.c: Add a fallback for the case that HAVE_TYPE_RESOURCE_INDEX is not set by configure
|
|
a8700d42
|
2008-08-18T05:08:01
|
|
* builds/unix/configure.raw: Replace all-in-one Carbon.h by minimum CoreServices.h
|
|
4e33f9e5
|
2008-07-05T06:35:28
|
|
Since FreeType uses `$(value ...)', we now need GNU make 3.80 or
newer.
* configure: zsh doesn't like ${1+"$@"}.
Update needed GNU make version.
* builds/toplevel.mk: Check for `$(eval ...)'.
* docs/INSTALL.GNU, docs/INSTALL.CROSS, docs/INSTALL.UNIX: Document
it.
|
|
be54a68c
|
2008-06-29T07:43:41
|
|
* Version 2.3.7 released.
=========================
Tag sources with `VER-2-3-7'.
* docs/CHANGES, docs/VERSION.DLL: Update documentation and bump
version number to 2.3.7.
* README, Jamfile (RefDoc), builds/win32/visualc/index.html,
builds/win32/visualc/freetype.dsp,
builds/win32/visualc/freetype.vcproj,
builds/win32/visualce/index.html,
builds/win32/visualce/freetype.dsp,
builds/win32/visualce/freetype.vcproj: s/2.3.6/2.3.7/, s/236/237/.
* include/freetype/freetype.h (FREETYPE_PATCH): Set to 7.
* builds/unix/configure.raw (version_info): Set to 9:18:3.
* docs/release: Updated.
|
|
e172c332
|
2008-06-25T22:21:42
|
|
minor formatting
|
|
f3a924dd
|
2008-06-24T17:13:58
|
|
Fix for 10.4u SDK bundled to Mac OS X 10.5
|
|
745a4f42
|
2008-06-22T22:41:24
|
|
* src/truetype/ttgload.c (TT_Load_Glyph): Protect bytecode stuff
with IS_HINTED.
* docs/CHANGES: Updated.
|
|
b1c36cfb
|
2008-06-22T15:32:56
|
|
* builds/unix/configure.raw: Copy -isysroot option from CFLAGS to LDFLAGS, if required
|
|
6174e17c
|
2008-06-10T05:58:25
|
|
* Version 2.3.6 released.
=========================
Tag sources with `VER-2-3-6'.
* docs/CHANGES, docs/VERSION.DLL: Update documentation and bump
version number to 2.3.6.
* README, Jamfile (RefDoc), builds/win32/visualc/index.html,
builds/win32/visualc/freetype.dsp,
builds/win32/visualc/freetype.vcproj,
builds/win32/visualce/index.html,
builds/win32/visualce/freetype.dsp,
builds/win32/visualce/freetype.vcproj: s/2.3.5/2.3.6/, s/235/236/.
* include/freetype/freetype.h (FREETYPE_PATCH): Set to 6.
* builds/unix/configure.raw (version_info): Set to 9:17:3.
* include/freetype/internal/psaux.h (T1_BuilderRec): Remove `scale_x'
and `scale_y'.
* src/cff/cffgload.h (CFF_Builder): Remove `scale_x' and `scale_y'.
* src/cff/cffparse.c: Include FT_INTERNAL_DEBUG_H.
* src/cff/cffobjs.h: Include FT_INTERNAL_POSTSCRIPT_HINTS_H.
|
|
26bd7a2c
|
2008-06-09T21:27:17
|
|
s/enable_shared/build_libtool_libs/
|
|
630e24d9
|
2008-06-09T21:20:18
|
|
Support debugging on WinCE. From Savannah patch #6536; this fixes
bug #23497.
* builds/win32/ftdebug.c (OutputDebugStringEx): New function/macro
as a replacement for OutputDebugStringA (which WinCE doesn't have).
Update all callers.
(ft_debug_init) [_WIN32_CE]: WinCE apparently doesn't have
environment variables.
|
|
a984fda8
|
2008-06-09T21:02:13
|
|
* README.CVS: Updated.
* builds/unix/configure.raw: Updated for newer versions of autoconf
and friends.
|
|
bcfcc71d
|
2008-05-15T09:14:39
|
|
* builds/toplevel.mk (CONFIG_GUESS, CONFIG_SUB): Updated.
|
|
a56e5266
|
2008-03-23T14:53:44
|
|
Adjustments for Visual C++ 8.0, as reported by Rainer Deyke.
* builds/compiler/visualc.mk (CFLAGS): Remove /W5.
(ANSIFLAGS): Add _CRT_SECURE_NO_DEPRECATE.
|
|
cd874831
|
2008-03-06T22:11:30
|
|
add copyright notices
|
|
7faa1554
|
2008-02-29T07:14:38
|
|
Add build support for symbian platform. From Savannah bug #22440.
* builds/symbian/*: New files.
|
|
9b9d3349
|
2008-02-21T23:22:06
|
|
minor improvements, copyright years
|
|
6cb2faa8
|
2008-02-21T18:46:07
|
|
* src/base/ftmac.c: Fix a bug of PostScript font name synthesis in parse_fond().
|
|
5d3ac4ae
|
2008-02-21T10:15:41
|
|
* builds/unix/confiure.raw: Split the compiler option to link Carbon frameworks for each framework
|
|
d2c55ab0
|
2008-02-15T09:12:59
|
|
fix for inexistent sfnt ID in broken FOND
|
|
60e83a1d
|
2008-02-14T02:55:16
|
|
* src/base/ftbase.c: <ftmac.c> is replaced by "ftmac.c"
|
|
744dd456
|
2008-02-11T08:22:40
|
|
* builds/modules.mk (CLOSE_MODULE, REMOVE_MODULE), builds/detect.mk
(dos_setup), builds/freetype.mk (clean_project_dos,
distclean_project_dos): Don't use \ but $(SEP). Reported by Duncan
Murdoch.
|
|
75696860
|
2008-01-04T01:43:23
|
|
Formatting.
|
|
bd7e1c3c
|
2007-12-06T17:17:30
|
|
Pass options from one configure script to another as-is (not
expanded). This is needed for options like
--includedir='${prefix}/include'.
* builds/unix/detect.mk, configure: Prevent argument expansion in
call to the (real) `configure' script.
* src/truetype/ttgload.c (load_truetype_glyph): Fix compilation if
TT_USE_BYTECODE_INTERPRETER isn't defined.
There exist CFFs which contain opcodes for the Type 1 operators
`hsbw' and `closepath' which are both invalid in Type 2 charstrings.
However, it doesn't harm to support them.
* src/cff/cffgload.c (CFF_Operator): Add `cff_op_hsbw' and
`cff_op_closepath.'
(cff_argument_counts): Ditto.
(cff_decoder_parse_charstrings): Handle Type 1 opcodes 9 (closepath)
and 13 (hsbw) which are invalid in Type 2 charstrings.
|
|
44b5e577
|
2007-12-06T07:47:25
|
|
Mac OS X Carbon tests in configure.raw are improved and builds/mac/ftmac.c is updated to sync to src/base/ftmac.c
|
|
2be3f472
|
2007-08-29T06:08:59
|
|
* src/base/ftmac.c: Use more abstract data type instead of `short\'
|
|
4fc0ccea
|
2007-08-11T16:35:06
|
|
* Fix a bug in configure.raw overlooking native C compiler if named "platform-gcc"
|
|
b6617885
|
2007-08-04T22:17:48
|
|
* builds/unix/configure.raw: Add call to AC_LIBTOOL_WIN32_DLL.
Fixes Savannah bug #20686.
|
|
3b0e5006
|
2007-07-03T04:48:19
|
|
* src/autofit/aflatin.c (af_latin_metrics_init_blues): Initialize
`round' to pacify compiler.
Really commit changes which have been used to build release 2.3.5.
|
|
7893501c
|
2007-06-19T03:27:05
|
|
* fix compiler warnings of src/base/ftmac.c, drop unnecessary part for Mac OS X.
|
|
08a645d8
|
2007-06-15T14:05:20
|
|
* builds/win32/ftdebug.c: Unify debug level handling with other
platforms.
|
|
367f301b
|
2007-06-14T06:56:52
|
|
* builds/win32/ftdebug.c (FT_Message): Send debug output to the
console as well as to the debugger.
|
|
cb37b3b3
|
2007-06-01T06:49:03
|
|
* builds/unix/ftsystem.c (FT_Stream_Open): Don't use ULONG_MAX but
LONG_MAX to avoid compiler warning. Suggested by Sean McBride.
|
|
4127103f
|
2007-05-06T04:51:48
|
|
* builds/win32/visualce/freetype.sln: Removed, as requested by
Vincent.
|
|
df49e697
|
2007-05-04T06:30:05
|
|
* builds/win32/visualce/*: Add Visual C++ project files for Pocket
PC targets.
* docs/CHANGES: Document them.
|
|
5077e83e
|
2007-05-04T06:13:46
|
|
* builds/unix/ftsystem.c (FT_Stream_Open): Handle return value 0 of
mmap (which might happen on some RTOS). From Savannah patch #5909.
|
|
14bf82e1
|
2007-04-10T04:09:49
|
|
* Version 2.3.4 released.
=========================
Tag sources with `VER-2-3-4'.
* docs/CHANGES, docs/VERSION.DLL: Update documentation and bump
version number to 2.3.4.
* README, Jamfile (RefDoc), builds/win32/visualc/index.html,
builds/win32/visualc/freetype.dsp,
builds/win32/visualc/freetype.vcproj: s/2.3.3/2.3.4/, s/233/234/.
* include/freetype/freetype.h (FREETYPE_PATCH): Set to 4.
* builds/unix/configure.raw (version_info): Set to 9:15:3.
|
|
644b1ad4
|
2007-03-28T21:17:11
|
|
* builds/win32/visualc/index.html,
builds/win32/visualc/freetype.dsp,
builds/win32/visualc/freetype.vcproc, README: s/2.3.2/2.3.3/,
s/232/233/.
* docs/CHANGES: Mention ftdiff.
|
|
23553d6d
|
2007-03-26T13:37:17
|
|
* docs/CHANGES, docs/VERSION, include/freetype/freetype.h,
builds/unix/configure.raw, README, Jamfile: update documentation and bump version
number to 2.3.3
|
|
86a3ee76
|
2007-03-26T05:40:55
|
|
Disable Carbon framework dependency on 64bit ABI of Mac OS X 10.4.x
|
|
14ffe091
|
2007-03-22T06:12:43
|
|
formatting
|
|
dabf0535
|
2007-03-22T05:23:53
|
|
Temporal fix for 32bit unsigned long overflow on LP64 platform
|
|
4bcf9574
|
2007-03-22T04:53:45
|
|
Suppress SGI compiler warning against setjmp
|
|
6fb74f67
|
2007-03-19T06:30:26
|
|
Dequote OS_INLINE in configure.raw to avoid unexpected shell evaluation
|
|
25d592a7
|
2007-03-09T07:59:35
|
|
* Version 2.3.2 released.
=========================
Tag sources with `VER-2-3-2'.
* builds/win32/visualc/index.html,
builds/win32/visualc/freetype.dsp,
builds/win32/visualc/freetype.vcproc, README: s/2.3.1/2.3.2/,
s/231/232/.
|
|
121cad54
|
2007-03-08T16:43:50
|
|
updating version numbers and documentation
|
|
de5e6866
|
2007-02-25T21:06:43
|
|
formatting
|
|
b68e025c
|
2007-02-20T02:37:36
|
|
* Fix memory leak in ftmac.c, patch by Jjgod Jiang
|
|
406d25f3
|
2007-02-12T22:01:18
|
|
more formatting and copyright years
|
|
c0f9c4aa
|
2007-02-12T14:55:03
|
|
introduce ft_mem_dup, ft_mem_strdup and ft_mem_strcpyn, and the corresponding
macros to use them (e.g. FT_STRDUP, FT_DUP and FT_STRCPYN)
modify the code to use them instead of raw mallocs/strcpy
|
|
dcbb708e
|
2007-02-08T08:54:09
|
|
formatting, copyright years
|
|
f223df6e
|
2007-02-05T04:07:46
|
|
* Add __attribute__((deprecated)) to functions whose interface using non ANSI data types
|
|
4827e9bd
|
2007-02-05T03:28:29
|
|
* Add FT_GetFilePath_From_Mac_ATS_Name as replacement for FT_GetFile_From_Mac_ATS_Name
|
|
027357f1
|
2007-02-05T02:50:45
|
|
* Check ANSI compatibility of Mac OS X system header
|
|
4b2e83d5
|
2007-02-01T07:58:02
|
|
A new set of spelling fixes from Alexei.
Add some copyright messages.
|
|
53935939
|
2007-01-31T08:53:02
|
|
* Version 2.3.1 released.
=========================
Tag sources with `VER-2-3-1-FINAL'.
* builds/win32/visualc/freetype.dsp,
builds/win32/visualc/freetype.vcproj: s/230/231/.
* builds/win32/visualc/index.html: s/221/231/.
* vms_make.com: Add `ftgasp'.
|
|
3eaef6c1
|
2007-01-30T10:40:23
|
|
updating version numbers to 2.3.1
|
|
b4142d51
|
2007-01-17T12:45:26
|
|
Whitespace and spelling fixes from Alexei.
Formatting, copyright years.
|
|
9b774e28
|
2007-01-16T06:11:27
|
|
Remove trailing whitespace. From Alexei.
|
|
267e1d71
|
2007-01-15T07:48:09
|
|
* builds/amiga/makefile, builds/amiga/makefile.os4,
builds/amiga/smakefile: Add `ftgasp.c' and `ftlcdfil.c'.
* builds/amiga/include/freetype/config/ftconfig.h: Synchronize.
|
|
6d96d31d
|
2007-01-12T10:30:19
|
|
* builds/unix/install-sh, builds/unix/mkinstalldirs: Updated from
`automake' CVS module from sources.redhat.com.
|
|
17432b5e
|
2007-01-12T09:28:44
|
|
* src/type1/t1load.c (is_space): Removed.
(parse_encoding, parse_charstrings): Use IS_PS_DELIM.
(parse_charstrings): Use IS_PS_TOKEN.
* autogen.sh: Avoid bash specific syntax.
|
|
d5ca7472
|
2007-01-10T14:18:15
|
|
* Jamfile, README, builds/win32/visualc/freetype.dsp,
builds/win32/visualc/freetype.vcproj, docs/VERSION.DLL,
include/freetype/freetype.h, include/freetype/t1tables.h,
include/freetype/internal/tttypes.h: updating version
number to 2.3.0 !!
* include/freetype/ftchapters.h, include/freetype/ftgasp.h,
include/freetype/ftlcdfil.h: updating reference documentation
with GASP support and LCD filtering sections
|