diff options
author | Henry Stiles <henry.stiles@artifex.com> | 2008-08-18 21:25:48 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 2008-08-18 21:25:48 +0000 |
commit | 8949c385972825f491df60d8c9243dff8275e44f (patch) | |
tree | e5144bef65cba368639d2a04610fe90fa5407c87 /main | |
parent | e3e8cd0d4110c609ee0aa8c30320f2191f5856b9 (diff) |
Turn off COMPILE_INITS in the default build for now. Currently there
is no code in the client languages pcl, pcl6, svg, or xps to read
%rom% so it is does not make sense to wrap fonts in the exectutable.
We also have a license issue placing AFPL fonts in a GPL executable to
resolve before this option can be on by default.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@8998 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'main')
-rw-r--r-- | main/pcl6_gcc.mak | 2 | ||||
-rw-r--r-- | main/pcl6_msvc.mak | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/pcl6_gcc.mak b/main/pcl6_gcc.mak index 8ab7695d6..0291bc9e8 100644 --- a/main/pcl6_gcc.mak +++ b/main/pcl6_gcc.mak @@ -50,7 +50,7 @@ IMDISRCDIR?=../gs/imdi PDL_INCLUDE_FLAGS?=-DPCL_INCLUDED # Choose COMPILE_INITS=1 for init files and fonts in ROM (otherwise =0) -COMPILE_INITS?=1 +COMPILE_INITS?=0 # PLPLATFORM indicates should be set to 'ps' for language switch # builds and null otherwise. diff --git a/main/pcl6_msvc.mak b/main/pcl6_msvc.mak index 418341695..0867667ab 100644 --- a/main/pcl6_msvc.mak +++ b/main/pcl6_msvc.mak @@ -54,7 +54,7 @@ IMDISRCDIR=..\gs\imdi !endif !ifndef COMPILE_INITS -COMPILE_INITS=1 +COMPILE_INITS=0 !endif # PLPLATFORM indicates should be set to 'ps' for language switch |