summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorL Peter Deutsch <lpd@ghostscript.com>2000-04-03 02:37:55 +0000
committerL Peter Deutsch <lpd@ghostscript.com>2000-04-03 02:37:55 +0000
commite0041d0d781c0b356ef48161b95f704a229ad3fa (patch)
tree5556a175fabde79c94048c745c6c82412ff47f04
parentbae17ed64316190651998baa6002ec377c202ff8 (diff)
downloadghostpdl-e0041d0d781c0b356ef48161b95f704a229ad3fa.tar.gz
Makes the .writefont9 operator (used only for testing) available in both
DEBUG and PROFILE configurations. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@236 a1074d23-0009-0410-80fe-cf8c14f379e6
-rw-r--r--gs/src/zfcid0.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gs/src/zfcid0.c b/gs/src/zfcid0.c
index 0e1313155..f4ebf2393 100644
--- a/gs/src/zfcid0.c
+++ b/gs/src/zfcid0.c
@@ -482,7 +482,7 @@ ztype9mapcid(i_ctx_t *i_ctx_p)
return 0;
}
-#ifdef DEBUG
+#if defined(DEBUG) || defined(PROFILE)
#include "gdevpsf.h"
@@ -518,7 +518,7 @@ const op_def zfcid0_op_defs[] =
{
{"2.buildfont9", zbuildfont9},
{"2.type9mapcid", ztype9mapcid},
-#ifdef DEBUG
+#if defined(DEBUG) || defined(PROFILE)
{"2.writefont9", zwritefont9},
#endif
op_def_end(0)