added development header files to CONFIG_H in the makefiles

increased T1_MAX_CHARSTRINGS_OPERANDS (again) to 256 -- one glyph of the
Chinese MingTiEG-Medium needs it that large
This commit is contained in:
Werner Lemberg 2000-10-19 15:56:22 +00:00
parent 05f0ad098f
commit 3c7c5da3bb
8 changed files with 18 additions and 9 deletions

View File

@ -357,7 +357,9 @@
/* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */ /* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */
/* minimum of 16 is required. */ /* minimum of 16 is required. */
/* */ /* */
#define T1_MAX_CHARSTRINGS_OPERANDS 64 /* The Chinese font MingTiEG-Medium (CNS 11643 character set) needs 256. */
/* */
#define T1_MAX_CHARSTRINGS_OPERANDS 256
/*************************************************************************/ /*************************************************************************/

View File

@ -154,7 +154,8 @@ OBJECTS_LIST :=
# #
PUBLIC_H := $(wildcard $(PUBLIC_)*.h) PUBLIC_H := $(wildcard $(PUBLIC_)*.h)
BASE_H := $(wildcard $(INTERNAL_)*.h) BASE_H := $(wildcard $(INTERNAL_)*.h)
CONFIG_H := $(wildcard $(CONFIG_)*.h) CONFIG_H := $(wildcard $(CONFIG_)*.h) \
$(wildcard $(BUILD)$(SEP)freetype$(SEP)config$(SEP)*.h)
CACHE_H := $(wildcard $(CACHE_)*.h) CACHE_H := $(wildcard $(CACHE_)*.h)
FREETYPE_H := $(PUBLIC_H) $(BASE_H) $(CONFIG_H) $(CACHE_H) FREETYPE_H := $(PUBLIC_H) $(BASE_H) $(CONFIG_H) $(CACHE_H)

View File

@ -357,7 +357,9 @@
/* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */ /* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */
/* minimum of 16 is required. */ /* minimum of 16 is required. */
/* */ /* */
#define T1_MAX_CHARSTRINGS_OPERANDS 64 /* The Chinese font MingTiEG-Medium (CNS 11643 character set) needs 256. */
/* */
#define T1_MAX_CHARSTRINGS_OPERANDS 256
/*************************************************************************/ /*************************************************************************/

View File

@ -22,7 +22,8 @@ TOP := $(shell cd $(TOP); pwd)
DELETE := rm -f DELETE := rm -f
SEP := / SEP := /
HOSTSEP := $(SEP) HOSTSEP := $(SEP)
BUILD := $(TOP)/builds/unix/devel # we use a special devel ftoption.h # we use a special devel ftoption.h
BUILD := $(TOP)/builds/unix/devel
# do not set the platform to `unix', or libtool will trick you # do not set the platform to `unix', or libtool will trick you
PLATFORM := unixdev PLATFORM := unixdev

View File

@ -357,6 +357,8 @@
/* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */ /* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */
/* minimum of 16 is required. */ /* minimum of 16 is required. */
/* */ /* */
/* The Chinese font MingTiEG-Medium (CNS 11643 character set) needs 256. */
/* */
#define T1_MAX_CHARSTRINGS_OPERANDS 64 #define T1_MAX_CHARSTRINGS_OPERANDS 64

View File

@ -23,7 +23,9 @@ ifndef TOP
TOP := . TOP := .
endif endif
SEP := / SEP := /
BUILD := $(TOP)/builds/win32/devel
include $(TOP)/builds/win32/win32-def.mk include $(TOP)/builds/win32/win32-def.mk
include $(TOP)/builds/compiler/gcc-dev.mk include $(TOP)/builds/compiler/gcc-dev.mk

View File

@ -357,7 +357,9 @@
/* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */ /* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */
/* minimum of 16 is required. */ /* minimum of 16 is required. */
/* */ /* */
#define T1_MAX_CHARSTRINGS_OPERANDS 64 /* The Chinese font MingTiEG-Medium (CNS 11643 character set) needs 256. */
/* */
#define T1_MAX_CHARSTRINGS_OPERANDS 256
/*************************************************************************/ /*************************************************************************/

View File

@ -520,9 +520,6 @@
#if 0 #if 0
#define T1_MAX_CHARSTRINGS_OPERANDS 64
#define T1_MAX_SUBRS_CALLS 16
/*************************************************************************/ /*************************************************************************/
/* */ /* */
/* T1_MAX_SUBRS_CALLS details the maximum number of nested sub-routine */ /* T1_MAX_SUBRS_CALLS details the maximum number of nested sub-routine */