diff options
author | Henry Stiles <henry.stiles@artifex.com> | 2008-03-19 23:13:11 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 2008-03-19 23:13:11 +0000 |
commit | 2a5c6f534c8e945947d39b5395a63557071bcf9b (patch) | |
tree | f89a50931b55e2d54bc56aa6bcfbdd460970fa10 /pxl | |
parent | cb2cd3276eb74b3f8d506fba514a06468da6fa79 (diff) |
Fixes a compiler error in MSVC. int32_t is defined in system headers
on many unix boxes so it was not noticed earlier. Thanks to Leo for
reporting this.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@3047 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'pxl')
-rw-r--r-- | pxl/pxl.mak | 8 | ||||
-rw-r--r-- | pxl/pxvalue.h | 1 |
2 files changed, 2 insertions, 7 deletions
diff --git a/pxl/pxl.mak b/pxl/pxl.mak index 7ded3860c..1f57aeee9 100644 --- a/pxl/pxl.mak +++ b/pxl/pxl.mak @@ -39,11 +39,6 @@ pxl.config-clean: ################ PCL XL ################ -#### Functionality left to implement: -# Symbol set mapping -#### Other stuff: -# Free subsidiary objects when freeing patterns - pxattr_h=$(PXLSRC)pxattr.h $(gdevpxat_h) pxbfont_h=$(PXLSRC)pxbfont.h pxenum_h=$(PXLSRC)pxenum.h $(gdevpxen_h) @@ -52,8 +47,7 @@ pxfont_h=$(PXLSRC)pxfont.h $(plfont_h) pxptable_h=$(PXLSRC)pxptable.h pxtag_h=$(PXLSRC)pxtag.h $(gdevpxop_h) pxsymbol_h=$(PXLGEN)pxsymbol.h -pxvalue_h=$(PXLSRC)pxvalue.h $(gstypes_h) $(pxattr_h) -# Nested headers +pxvalue_h=$(PXLSRC)pxvalue.h $(gstypes_h) $(pxattr_h) $(stdint__h) pxdict_h=$(PXLSRC)pxdict.h $(pldict_h) $(pxvalue_h) pxgstate_h=$(PXLSRC)pxgstate.h $(gsccolor_h) $(gsiparam_h) $(gsmatrix_h) $(gsrefct_h) $(gxbitmap_h) $(gxfixed_h) $(plsymbol_h) $(pxdict_h) $(pxenum_h) pxoper_h=$(PXLSRC)pxoper.h $(gserror_h) $(pxattr_h) $(pxerrors_h) $(pxvalue_h) diff --git a/pxl/pxvalue.h b/pxl/pxvalue.h index 8db75e0df..3d5a6bbb1 100644 --- a/pxl/pxvalue.h +++ b/pxl/pxvalue.h @@ -17,6 +17,7 @@ #ifndef pxvalue_INCLUDED # define pxvalue_INCLUDED +#include "stdint_.h" #include "gstypes.h" #include "pxattr.h" |