2000-07-08 02:22:20 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
2000-07-20 08:57:41 +02:00
|
|
|
/* ftconfig.in */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* */
|
2000-07-20 08:57:41 +02:00
|
|
|
/* UNIX-specific configuration file (specification only). */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* */
|
2016-01-13 11:54:10 +01:00
|
|
|
/* Copyright 1996-2016 by */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-07-20 08:57:41 +02:00
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* This header file contains a number of macro definitions that are used */
|
2000-07-20 08:57:41 +02:00
|
|
|
/* by the rest of the engine. Most of the macros here are automatically */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* determined at compile time, and you should not need to change it to */
|
2000-07-20 08:57:41 +02:00
|
|
|
/* port FreeType, except to compile the library with a non-ANSI */
|
|
|
|
/* compiler. */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* */
|
|
|
|
/* Note however that if some specific modifications are needed, we */
|
|
|
|
/* advise you to place a modified copy in your build directory. */
|
|
|
|
/* */
|
2013-11-13 08:55:46 +01:00
|
|
|
/* The build directory is usually `builds/<system>', and contains */
|
|
|
|
/* system-specific files that are always included first when building */
|
|
|
|
/* the library. */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2000-07-20 08:57:41 +02:00
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#ifndef FTCONFIG_H_
|
|
|
|
#define FTCONFIG_H_
|
2000-12-02 01:35:11 +01:00
|
|
|
|
2000-12-05 00:28:14 +01:00
|
|
|
#include <ft2build.h>
|
2000-12-02 01:35:11 +01:00
|
|
|
#include FT_CONFIG_OPTIONS_H
|
2002-04-12 12:19:15 +02:00
|
|
|
#include FT_CONFIG_STANDARD_LIBRARY_H
|
2000-07-20 08:57:41 +02:00
|
|
|
|
2000-07-08 02:22:20 +02:00
|
|
|
|
2000-12-02 01:35:11 +01:00
|
|
|
FT_BEGIN_HEADER
|
2000-08-01 15:17:04 +02:00
|
|
|
|
|
|
|
|
2000-07-08 02:22:20 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* PLATFORM-SPECIFIC CONFIGURATION MACROS */
|
|
|
|
/* */
|
|
|
|
/* These macros can be toggled to suit a specific system. The current */
|
|
|
|
/* ones are defaults used to compile FreeType in an ANSI C environment */
|
|
|
|
/* (16bit compilers are also supported). Copy this file to your own */
|
2013-11-13 08:55:46 +01:00
|
|
|
/* `builds/<system>' directory, and edit it to port the engine. */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
2003-11-09 09:37:14 +01:00
|
|
|
#undef HAVE_UNISTD_H
|
|
|
|
#undef HAVE_FCNTL_H
|
2008-09-11 10:02:23 +02:00
|
|
|
#undef HAVE_STDINT_H
|
2003-11-09 09:37:14 +01:00
|
|
|
|
2000-07-20 08:57:41 +02:00
|
|
|
|
2008-09-11 10:02:23 +02:00
|
|
|
/* There are systems (like the Texas Instruments 'C54x) where a `char' */
|
|
|
|
/* has 16 bits. ANSI C says that sizeof(char) is always 1. Since an */
|
|
|
|
/* `int' has 16 bits also for this system, sizeof(int) gives 1 which */
|
|
|
|
/* is probably unexpected. */
|
|
|
|
/* */
|
|
|
|
/* `CHAR_BIT' (defined in limits.h) gives the number of bits in a */
|
|
|
|
/* `char' type. */
|
2000-07-20 08:57:41 +02:00
|
|
|
|
2008-09-11 10:02:23 +02:00
|
|
|
#ifndef FT_CHAR_BIT
|
2004-04-16 11:56:30 +02:00
|
|
|
#define FT_CHAR_BIT CHAR_BIT
|
2008-09-11 10:02:23 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#undef FT_USE_AUTOCONF_SIZEOF_TYPES
|
|
|
|
#ifdef FT_USE_AUTOCONF_SIZEOF_TYPES
|
2008-09-12 18:27:48 +02:00
|
|
|
|
2008-09-11 10:02:23 +02:00
|
|
|
#undef SIZEOF_INT
|
|
|
|
#undef SIZEOF_LONG
|
|
|
|
#define FT_SIZEOF_INT SIZEOF_INT
|
|
|
|
#define FT_SIZEOF_LONG SIZEOF_LONG
|
2008-09-12 18:27:48 +02:00
|
|
|
|
|
|
|
#else /* !FT_USE_AUTOCONF_SIZEOF_TYPES */
|
2008-09-11 10:02:23 +02:00
|
|
|
|
|
|
|
/* Following cpp computation of the bit length of int and long */
|
Another adjustment to header locations.
This change is a result of a discussion thread on freetype-devel
http://lists.nongnu.org/archive/html/freetype-devel/2015-06/msg00041.html
Re-introduce the `freetype2' subdirectory for all FreeType header
files after installation, and rename the `freetype2' subdirectory in
the git repository to `freetype'.
* include/freetype2: Renamed to...
* include/freetype: This.
* CMakeLists.txt (PUBLIC_HEADERS, PUBLIC_CONFIG_HEADERS,
PRIVATE_HEADERS): Updated.
Update creation of `ftconfig.h'.
Install generated `ftconfig.h'.
* Jamfile (HDRMACRO, RefDoc), autogen.sh: Updated.
* builds/amiga/include/config/ftconfig.h, builds/freetype.mk
(PUBLIC_DIR), builds/symbian/bld.inf, builds/toplevel.mk (work),
builds/unix/freetype2.in: Updated.
* builds/unix/freetype-config.in: Updated.
* builds/unix/configure.raw: Don't check for `rmdir'.
* builds/unix/unix-def.in (DELDIR): Use `rm -rf', which is portable
according to the autoconf info manual.
* builds/unix/install.mk (install, uninstall,
distclean_project_unix): Update and simplify.
* builds/wince/*, builds/windows/*: Updated.
* devel/ft2build.h, include/ft2build.h: Updated.
* include/freetype2/config/ftheader.h,
include/freetype2/internal/ftserv.h,
include/freetype2/internal/internal.h: Update all header file
macros.
* src/tools/chktrcmp.py (TRACE_DEF_FILES): Updated.
* docs/*: Updated.
2015-06-25 13:04:57 +02:00
|
|
|
/* is copied from default include/freetype/config/ftconfig.h. */
|
2008-09-11 10:02:23 +02:00
|
|
|
/* If any improvement is required for this file, it should be */
|
|
|
|
/* applied to the original header file for the builders that */
|
2015-02-16 11:31:32 +01:00
|
|
|
/* do not use configure script. */
|
2008-09-11 10:02:23 +02:00
|
|
|
|
|
|
|
/* The size of an `int' type. */
|
|
|
|
#if FT_UINT_MAX == 0xFFFFUL
|
|
|
|
#define FT_SIZEOF_INT (16 / FT_CHAR_BIT)
|
|
|
|
#elif FT_UINT_MAX == 0xFFFFFFFFUL
|
|
|
|
#define FT_SIZEOF_INT (32 / FT_CHAR_BIT)
|
|
|
|
#elif FT_UINT_MAX > 0xFFFFFFFFUL && FT_UINT_MAX == 0xFFFFFFFFFFFFFFFFUL
|
|
|
|
#define FT_SIZEOF_INT (64 / FT_CHAR_BIT)
|
|
|
|
#else
|
|
|
|
#error "Unsupported size of `int' type!"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* The size of a `long' type. A five-byte `long' (as used e.g. on the */
|
|
|
|
/* DM642) is recognized but avoided. */
|
|
|
|
#if FT_ULONG_MAX == 0xFFFFFFFFUL
|
|
|
|
#define FT_SIZEOF_LONG (32 / FT_CHAR_BIT)
|
|
|
|
#elif FT_ULONG_MAX > 0xFFFFFFFFUL && FT_ULONG_MAX == 0xFFFFFFFFFFUL
|
|
|
|
#define FT_SIZEOF_LONG (32 / FT_CHAR_BIT)
|
|
|
|
#elif FT_ULONG_MAX > 0xFFFFFFFFUL && FT_ULONG_MAX == 0xFFFFFFFFFFFFFFFFUL
|
|
|
|
#define FT_SIZEOF_LONG (64 / FT_CHAR_BIT)
|
|
|
|
#else
|
|
|
|
#error "Unsupported size of `long' type!"
|
|
|
|
#endif
|
|
|
|
|
2008-09-12 18:27:48 +02:00
|
|
|
#endif /* !FT_USE_AUTOCONF_SIZEOF_TYPES */
|
|
|
|
|
2000-07-20 08:57:41 +02:00
|
|
|
|
2002-02-19 02:12:23 +01:00
|
|
|
/* FT_UNUSED is a macro used to indicate that a given parameter is not */
|
|
|
|
/* used -- this is only used to get rid of unpleasant compiler warnings */
|
2000-07-20 08:57:41 +02:00
|
|
|
#ifndef FT_UNUSED
|
|
|
|
#define FT_UNUSED( arg ) ( (arg) = (arg) )
|
|
|
|
#endif
|
|
|
|
|
2000-07-08 02:22:20 +02:00
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* AUTOMATIC CONFIGURATION MACROS */
|
|
|
|
/* */
|
2000-07-20 08:57:41 +02:00
|
|
|
/* These macros are computed from the ones defined above. Don't touch */
|
|
|
|
/* their definition, unless you know precisely what you are doing. No */
|
|
|
|
/* porter should need to mess with them. */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
2003-11-09 09:37:14 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Mac support */
|
|
|
|
/* */
|
|
|
|
/* This is the only necessary change, so it is defined here instead */
|
|
|
|
/* providing a new configuration file. */
|
|
|
|
/* */
|
2011-12-02 13:14:18 +01:00
|
|
|
#if defined( __APPLE__ ) || ( defined( __MWERKS__ ) && defined( macintosh ) )
|
2007-03-26 07:40:55 +02:00
|
|
|
/* no Carbon frameworks for 64bit 10.4.x */
|
2011-06-01 10:36:04 +02:00
|
|
|
/* AvailabilityMacros.h is available since Mac OS X 10.2, */
|
2011-05-28 18:33:34 +02:00
|
|
|
/* so guess the system version by maximum errno before inclusion */
|
|
|
|
#include <errno.h>
|
|
|
|
#ifdef ECANCELED /* defined since 10.2 */
|
2007-03-26 07:40:55 +02:00
|
|
|
#include "AvailabilityMacros.h"
|
2011-05-28 18:33:34 +02:00
|
|
|
#endif
|
2007-03-26 07:40:55 +02:00
|
|
|
#if defined( __LP64__ ) && \
|
|
|
|
( MAC_OS_X_VERSION_MIN_REQUIRED <= MAC_OS_X_VERSION_10_4 )
|
2011-12-02 13:14:18 +01:00
|
|
|
/undef FT_MACINTOSH
|
2006-12-15 16:23:21 +01:00
|
|
|
#endif
|
2008-10-03 13:52:22 +02:00
|
|
|
|
2008-10-04 13:39:03 +02:00
|
|
|
#elif defined( __SC__ ) || defined( __MRC__ )
|
2008-10-03 13:52:22 +02:00
|
|
|
/* Classic MacOS compilers */
|
|
|
|
#include "ConditionalMacros.h"
|
|
|
|
#if TARGET_OS_MAC
|
|
|
|
#define FT_MACINTOSH 1
|
|
|
|
#endif
|
|
|
|
|
2003-11-09 09:37:14 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2007-03-22 05:53:45 +01:00
|
|
|
/* Fix compiler warning with sgi compiler */
|
|
|
|
#if defined( __sgi ) && !defined( __GNUC__ )
|
|
|
|
#if defined( _COMPILER_VERSION ) && ( _COMPILER_VERSION >= 730 )
|
|
|
|
#pragma set woff 3505
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-07-08 02:22:20 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
2013-05-05 17:50:22 +02:00
|
|
|
/* <Section> */
|
|
|
|
/* basic_types */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* */
|
2013-05-05 17:50:22 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
|
|
|
/* FT_Int16 */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A typedef for a 16bit signed integer type. */
|
|
|
|
/* */
|
|
|
|
typedef signed short FT_Int16;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
|
|
|
/* FT_UInt16 */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A typedef for a 16bit unsigned integer type. */
|
2000-07-08 02:22:20 +02:00
|
|
|
/* */
|
|
|
|
typedef unsigned short FT_UInt16;
|
|
|
|
|
2013-05-05 17:50:22 +02:00
|
|
|
/* */
|
|
|
|
|
|
|
|
|
|
|
|
/* this #if 0 ... #endif clause is for documentation purposes */
|
|
|
|
#if 0
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
|
|
|
/* FT_Int32 */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A typedef for a 32bit signed integer type. The size depends on */
|
|
|
|
/* the configuration. */
|
|
|
|
/* */
|
|
|
|
typedef signed XXX FT_Int32;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
|
|
|
/* FT_UInt32 */
|
|
|
|
/* */
|
|
|
|
/* A typedef for a 32bit unsigned integer type. The size depends on */
|
|
|
|
/* the configuration. */
|
|
|
|
/* */
|
|
|
|
typedef unsigned XXX FT_UInt32;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
|
|
|
/* FT_Int64 */
|
|
|
|
/* */
|
|
|
|
/* A typedef for a 64bit signed integer type. The size depends on */
|
|
|
|
/* the configuration. Only defined if there is real 64bit support; */
|
|
|
|
/* otherwise, it gets emulated with a structure (if necessary). */
|
|
|
|
/* */
|
|
|
|
typedef signed XXX FT_Int64;
|
|
|
|
|
2013-05-12 07:27:48 +02:00
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
|
|
|
/* FT_UInt64 */
|
|
|
|
/* */
|
|
|
|
/* A typedef for a 64bit unsigned integer type. The size depends on */
|
|
|
|
/* the configuration. Only defined if there is real 64bit support; */
|
|
|
|
/* otherwise, it gets emulated with a structure (if necessary). */
|
|
|
|
/* */
|
|
|
|
typedef unsigned XXX FT_UInt64;
|
|
|
|
|
2013-05-05 17:50:22 +02:00
|
|
|
/* */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2000-07-08 02:22:20 +02:00
|
|
|
#if FT_SIZEOF_INT == 4
|
|
|
|
|
|
|
|
typedef signed int FT_Int32;
|
|
|
|
typedef unsigned int FT_UInt32;
|
|
|
|
|
|
|
|
#elif FT_SIZEOF_LONG == 4
|
|
|
|
|
|
|
|
typedef signed long FT_Int32;
|
|
|
|
typedef unsigned long FT_UInt32;
|
|
|
|
|
|
|
|
#else
|
2000-07-20 08:57:41 +02:00
|
|
|
#error "no 32bit type found -- please check your configuration files"
|
2000-07-08 02:22:20 +02:00
|
|
|
#endif
|
|
|
|
|
2003-11-09 09:37:14 +01:00
|
|
|
|
|
|
|
/* look up an integer type that is at least 32 bits */
|
|
|
|
#if FT_SIZEOF_INT >= 4
|
|
|
|
|
|
|
|
typedef int FT_Fast;
|
|
|
|
typedef unsigned int FT_UFast;
|
|
|
|
|
|
|
|
#elif FT_SIZEOF_LONG >= 4
|
|
|
|
|
|
|
|
typedef long FT_Fast;
|
|
|
|
typedef unsigned long FT_UFast;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* determine whether we have a 64-bit int type for platforms without */
|
|
|
|
/* Autoconf */
|
2000-07-08 02:22:20 +02:00
|
|
|
#if FT_SIZEOF_LONG == 8
|
|
|
|
|
2000-07-20 08:57:41 +02:00
|
|
|
/* FT_LONG64 must be defined if a 64-bit type is available */
|
2000-07-08 02:22:20 +02:00
|
|
|
#define FT_LONG64
|
2013-08-05 16:37:21 +02:00
|
|
|
#define FT_INT64 long
|
|
|
|
#define FT_UINT64 unsigned long
|
2003-11-09 09:37:14 +01:00
|
|
|
|
2014-08-22 05:28:52 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* A 64-bit data type may create compilation problems if you compile */
|
|
|
|
/* in strict ANSI mode. To avoid them, we disable other 64-bit data */
|
|
|
|
/* types if __STDC__ is defined. You can however ignore this rule */
|
|
|
|
/* by defining the FT_CONFIG_OPTION_FORCE_INT64 configuration macro. */
|
|
|
|
/* */
|
|
|
|
#elif !defined( __STDC__ ) || defined( FT_CONFIG_OPTION_FORCE_INT64 )
|
|
|
|
|
2016-01-23 05:35:49 +01:00
|
|
|
#if defined( __STDC_VERSION__ ) && __STDC_VERSION__ >= 199901L
|
|
|
|
|
|
|
|
#define FT_LONG64
|
|
|
|
#define FT_INT64 long long int
|
|
|
|
#define FT_UINT64 unsigned long long int
|
|
|
|
|
|
|
|
#elif defined( _MSC_VER ) && _MSC_VER >= 900 /* Visual C++ (and Intel C++) */
|
2003-11-09 09:37:14 +01:00
|
|
|
|
|
|
|
/* this compiler provides the __int64 type */
|
|
|
|
#define FT_LONG64
|
2013-08-05 16:37:21 +02:00
|
|
|
#define FT_INT64 __int64
|
|
|
|
#define FT_UINT64 unsigned __int64
|
2003-11-09 09:37:14 +01:00
|
|
|
|
|
|
|
#elif defined( __BORLANDC__ ) /* Borland C++ */
|
|
|
|
|
|
|
|
/* XXXX: We should probably check the value of __BORLANDC__ in order */
|
|
|
|
/* to test the compiler version. */
|
|
|
|
|
|
|
|
/* this compiler provides the __int64 type */
|
|
|
|
#define FT_LONG64
|
2013-08-05 16:37:21 +02:00
|
|
|
#define FT_INT64 __int64
|
|
|
|
#define FT_UINT64 unsigned __int64
|
2003-11-09 09:37:14 +01:00
|
|
|
|
|
|
|
#elif defined( __WATCOMC__ ) /* Watcom C++ */
|
|
|
|
|
|
|
|
/* Watcom doesn't provide 64-bit data types */
|
|
|
|
|
|
|
|
#elif defined( __MWERKS__ ) /* Metrowerks CodeWarrior */
|
|
|
|
|
|
|
|
#define FT_LONG64
|
2013-08-05 16:37:21 +02:00
|
|
|
#define FT_INT64 long long int
|
|
|
|
#define FT_UINT64 unsigned long long int
|
2003-11-09 09:37:14 +01:00
|
|
|
|
|
|
|
#elif defined( __GNUC__ )
|
|
|
|
|
2006-08-27 10:03:46 +02:00
|
|
|
/* GCC provides the `long long' type */
|
2003-11-09 09:37:14 +01:00
|
|
|
#define FT_LONG64
|
2013-08-05 16:37:21 +02:00
|
|
|
#define FT_INT64 long long int
|
|
|
|
#define FT_UINT64 unsigned long long int
|
2003-11-09 09:37:14 +01:00
|
|
|
|
2016-01-23 05:35:49 +01:00
|
|
|
#endif /* __STDC_VERSION__ >= 199901L */
|
2000-07-08 02:22:20 +02:00
|
|
|
|
2014-08-22 05:28:52 +02:00
|
|
|
#endif /* FT_SIZEOF_LONG == 8 */
|
2000-07-08 02:22:20 +02:00
|
|
|
|
2013-05-05 17:50:22 +02:00
|
|
|
#ifdef FT_LONG64
|
2013-05-12 07:27:48 +02:00
|
|
|
typedef FT_INT64 FT_Int64;
|
|
|
|
typedef FT_UINT64 FT_UInt64;
|
2013-05-05 17:50:22 +02:00
|
|
|
#endif
|
|
|
|
|
2000-07-08 02:22:20 +02:00
|
|
|
|
2015-02-16 11:31:32 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
* Version 2.6 released.
=======================
Tag sources with `VER-2-6'.
* docs/VERSION.DLL: Update documentation and bump version number to
2.6.
* README, Jamfile (RefDoc), builds/windows/vc2005/freetype.vcproj,
builds/windows/vc2005/index.html,
builds/windows/vc2008/freetype.vcproj,
builds/windows/vc2008/index.html,
builds/windows/vc2010/freetype.vcxproj,
builds/windows/vc2010/index.html,
builds/windows/visualc/freetype.dsp,
builds/windows/visualc/freetype.vcproj,
builds/windows/visualc/index.html,
builds/windows/visualce/freetype.dsp,
builds/windows/visualce/freetype.vcproj,
builds/windows/visualce/index.html,
builds/wince/vc2005-ce/freetype.vcproj,
builds/wince/vc2005-ce/index.html,
builds/wince/vc2008-ce/freetype.vcproj,
builds/wince/vc2008-ce/index.html: s/2.5.5/2.6/, s/255/26/.
* include/freetype/freetype.h (FREETYPE_MINOR): Set to 6.
(FREETYPE_PATCH): Set to 0.
* builds/unix/configure.raw (version_info): Set to 18:0:12.
* CMakeLists.txt (VERSION_MINOR): Set to 0.
(VERSION_PATCH): Set to 6.
* src/autofit/afmodule.c [!FT_MAKE_OPTION_SINGLE_OBJECT]: Add
declarations for dumping functions.
* src/truetype/ttinterp.c (TT_New_Context): Pacify compiler.
* builds/toplevel.mk: Use `freetype.mk's code to compute the version
string.
Don't include a zero patch level in version string.
* builds/freetype.mk: Remove code for computing the version string.
2015-06-07 16:11:18 +02:00
|
|
|
/* miscellaneous */
|
2015-02-16 11:31:32 +01:00
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
2008-09-12 18:27:48 +02:00
|
|
|
#define FT_BEGIN_STMNT do {
|
|
|
|
#define FT_END_STMNT } while ( 0 )
|
|
|
|
#define FT_DUMMY_STMNT FT_BEGIN_STMNT FT_END_STMNT
|
|
|
|
|
|
|
|
|
2015-02-16 11:31:32 +01:00
|
|
|
/* typeof condition taken from gnulib's `intprops.h' header file */
|
|
|
|
#if ( __GNUC__ >= 2 || \
|
|
|
|
defined( __IBM__TYPEOF__ ) || \
|
|
|
|
( __SUNPRO_C >= 0x5110 && !__STDC__ ) )
|
2015-06-23 09:24:48 +02:00
|
|
|
#define FT_TYPEOF( type ) (__typeof__ (type))
|
2015-02-16 11:31:32 +01:00
|
|
|
#else
|
2015-06-23 09:24:48 +02:00
|
|
|
#define FT_TYPEOF( type ) /* empty */
|
2015-02-16 11:31:32 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-07-08 02:22:20 +02:00
|
|
|
#ifdef FT_MAKE_OPTION_SINGLE_OBJECT
|
2000-08-03 02:03:08 +02:00
|
|
|
|
2002-03-29 08:43:04 +01:00
|
|
|
#define FT_LOCAL( x ) static x
|
|
|
|
#define FT_LOCAL_DEF( x ) static x
|
2000-08-03 02:03:08 +02:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2002-03-29 08:43:04 +01:00
|
|
|
#define FT_LOCAL( x ) extern "C" x
|
|
|
|
#define FT_LOCAL_DEF( x ) extern "C" x
|
2000-07-08 02:22:20 +02:00
|
|
|
#else
|
2002-03-29 08:43:04 +01:00
|
|
|
#define FT_LOCAL( x ) extern x
|
2003-11-09 09:37:14 +01:00
|
|
|
#define FT_LOCAL_DEF( x ) x
|
2000-07-08 02:22:20 +02:00
|
|
|
#endif
|
|
|
|
|
2000-08-03 02:03:08 +02:00
|
|
|
#endif /* FT_MAKE_OPTION_SINGLE_OBJECT */
|
|
|
|
|
2013-08-05 16:37:21 +02:00
|
|
|
#define FT_LOCAL_ARRAY( x ) extern const x
|
|
|
|
#define FT_LOCAL_ARRAY_DEF( x ) const x
|
|
|
|
|
2000-08-03 02:03:08 +02:00
|
|
|
|
2000-11-04 09:33:38 +01:00
|
|
|
#ifndef FT_BASE
|
2000-08-03 02:03:08 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2000-11-04 09:33:38 +01:00
|
|
|
#define FT_BASE( x ) extern "C" x
|
2000-07-08 02:22:20 +02:00
|
|
|
#else
|
2000-11-04 09:33:38 +01:00
|
|
|
#define FT_BASE( x ) extern x
|
2000-07-20 08:57:41 +02:00
|
|
|
#endif
|
|
|
|
|
2000-11-04 09:33:38 +01:00
|
|
|
#endif /* !FT_BASE */
|
2000-08-03 02:03:08 +02:00
|
|
|
|
|
|
|
|
2000-11-04 09:33:38 +01:00
|
|
|
#ifndef FT_BASE_DEF
|
2000-08-03 02:03:08 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2006-08-27 10:03:46 +02:00
|
|
|
#define FT_BASE_DEF( x ) x
|
2000-08-03 02:03:08 +02:00
|
|
|
#else
|
2006-08-27 10:03:46 +02:00
|
|
|
#define FT_BASE_DEF( x ) x
|
2000-08-03 02:03:08 +02:00
|
|
|
#endif
|
|
|
|
|
2000-11-04 09:33:38 +01:00
|
|
|
#endif /* !FT_BASE_DEF */
|
2000-08-03 02:03:08 +02:00
|
|
|
|
|
|
|
|
2000-11-04 09:33:38 +01:00
|
|
|
#ifndef FT_EXPORT
|
2000-08-03 02:03:08 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2000-11-04 09:33:38 +01:00
|
|
|
#define FT_EXPORT( x ) extern "C" x
|
2000-08-03 02:03:08 +02:00
|
|
|
#else
|
2000-11-04 09:33:38 +01:00
|
|
|
#define FT_EXPORT( x ) extern x
|
2000-07-08 02:22:20 +02:00
|
|
|
#endif
|
|
|
|
|
2000-11-04 09:33:38 +01:00
|
|
|
#endif /* !FT_EXPORT */
|
2000-08-03 02:03:08 +02:00
|
|
|
|
|
|
|
|
2000-11-04 09:33:38 +01:00
|
|
|
#ifndef FT_EXPORT_DEF
|
2000-08-03 02:03:08 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2000-11-04 09:33:38 +01:00
|
|
|
#define FT_EXPORT_DEF( x ) extern "C" x
|
2000-08-03 02:03:08 +02:00
|
|
|
#else
|
2000-11-04 09:33:38 +01:00
|
|
|
#define FT_EXPORT_DEF( x ) extern x
|
2000-07-08 02:22:20 +02:00
|
|
|
#endif
|
|
|
|
|
2000-11-04 09:33:38 +01:00
|
|
|
#endif /* !FT_EXPORT_DEF */
|
2000-08-03 02:03:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef FT_EXPORT_VAR
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define FT_EXPORT_VAR( x ) extern "C" x
|
|
|
|
#else
|
|
|
|
#define FT_EXPORT_VAR( x ) extern x
|
2000-07-08 02:22:20 +02:00
|
|
|
#endif
|
|
|
|
|
2000-08-03 02:03:08 +02:00
|
|
|
#endif /* !FT_EXPORT_VAR */
|
|
|
|
|
2000-11-04 09:33:38 +01:00
|
|
|
/* The following macros are needed to compile the library with a */
|
2001-06-27 18:18:10 +02:00
|
|
|
/* C++ compiler and with 16bit compilers. */
|
2000-11-04 09:33:38 +01:00
|
|
|
/* */
|
2000-08-03 02:03:08 +02:00
|
|
|
|
|
|
|
/* This is special. Within C++, you must specify `extern "C"' for */
|
|
|
|
/* functions which are used via function pointers, and you also */
|
|
|
|
/* must do that for structures which contain function pointers to */
|
|
|
|
/* assure C linkage -- it's not possible to have (local) anonymous */
|
|
|
|
/* functions which are accessed by (global) function pointers. */
|
|
|
|
/* */
|
2000-11-04 09:33:38 +01:00
|
|
|
/* */
|
|
|
|
/* FT_CALLBACK_DEF is used to _define_ a callback function. */
|
|
|
|
/* */
|
|
|
|
/* FT_CALLBACK_TABLE is used to _declare_ a constant variable that */
|
|
|
|
/* contains pointers to callback functions. */
|
|
|
|
/* */
|
|
|
|
/* FT_CALLBACK_TABLE_DEF is used to _define_ a constant variable */
|
|
|
|
/* that contains pointers to callback functions. */
|
|
|
|
/* */
|
2001-06-27 18:18:10 +02:00
|
|
|
/* */
|
|
|
|
/* Some 16bit compilers have to redefine these macros to insert */
|
|
|
|
/* the infamous `_cdecl' or `__fastcall' declarations. */
|
|
|
|
/* */
|
2001-06-27 12:54:13 +02:00
|
|
|
#ifndef FT_CALLBACK_DEF
|
2001-06-27 18:18:10 +02:00
|
|
|
#ifdef __cplusplus
|
2002-03-29 08:43:04 +01:00
|
|
|
#define FT_CALLBACK_DEF( x ) extern "C" x
|
2001-06-27 18:18:10 +02:00
|
|
|
#else
|
2002-03-29 08:43:04 +01:00
|
|
|
#define FT_CALLBACK_DEF( x ) static x
|
2001-06-27 12:54:13 +02:00
|
|
|
#endif
|
2001-06-27 18:18:10 +02:00
|
|
|
#endif /* FT_CALLBACK_DEF */
|
2000-08-03 02:03:08 +02:00
|
|
|
|
2001-06-27 12:54:13 +02:00
|
|
|
#ifndef FT_CALLBACK_TABLE
|
2001-06-27 18:18:10 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#define FT_CALLBACK_TABLE extern "C"
|
|
|
|
#define FT_CALLBACK_TABLE_DEF extern "C"
|
|
|
|
#else
|
|
|
|
#define FT_CALLBACK_TABLE extern
|
|
|
|
#define FT_CALLBACK_TABLE_DEF /* nothing */
|
2001-06-27 12:54:13 +02:00
|
|
|
#endif
|
2001-06-27 18:18:10 +02:00
|
|
|
#endif /* FT_CALLBACK_TABLE */
|
2000-08-03 02:03:08 +02:00
|
|
|
|
2000-08-01 15:17:04 +02:00
|
|
|
|
2000-12-02 01:35:11 +01:00
|
|
|
FT_END_HEADER
|
2000-08-01 15:17:04 +02:00
|
|
|
|
2003-11-09 09:37:14 +01:00
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#endif /* FTCONFIG_H_ */
|
2000-07-08 02:22:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|