summaryrefslogtreecommitdiff
path: root/pxl
diff options
context:
space:
mode:
authorHenry Stiles <henry.stiles@artifex.com>2011-08-09 09:41:07 -0600
committerHenry Stiles <henry.stiles@artifex.com>2011-08-09 09:44:42 -0600
commit8f2ecf42738966678a8826d8de9c60c4f3684600 (patch)
tree32527db3258ea4822d9c070dbf4b6fd19b5bf706 /pxl
parent02ced7b54e8c10bb6ded0efff72990a88ec50027 (diff)
Remove gserror.h, its contents have been moved to gserrors.h so we
only need have one include file to use for error reporting.
Diffstat (limited to 'pxl')
-rw-r--r--pxl/pxl.mak4
-rw-r--r--pxl/pxoper.h2
-rw-r--r--pxl/pxparse.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/pxl/pxl.mak b/pxl/pxl.mak
index 957d0ed1e..e7293ba65 100644
--- a/pxl/pxl.mak
+++ b/pxl/pxl.mak
@@ -50,7 +50,7 @@ pxsymbol_h=$(PXLGEN)pxsymbol.h
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)
+pxoper_h=$(PXLSRC)pxoper.h $(gserrors_h) $(pxattr_h) $(pxerrors_h) $(pxvalue_h)
pxparse_h=$(PXLSRC)pxparse.h $(pxoper_h)
pxstate_h=$(PXLSRC)pxstate.h $(gsmemory_h) $(pxgstate_h) $(pltop_h)
pxpthr_h=$(PXLSRC)pxpthr.h
@@ -68,7 +68,7 @@ $(PXLOBJ)pxerrors.$(OBJ): $(PXLSRC)pxerrors.c $(AK)\
$(PXLCCC) $(PXLSRC)pxerrors.c $(PXLO_)pxerrors.$(OBJ)
$(PXLOBJ)pxparse.$(OBJ): $(PXLSRC)pxparse.c $(AK) $(memory__h)\
- $(gdebug_h) $(gserror_h) $(gsio_h) $(gstypes_h)\
+ $(gdebug_h) $(gserrors_h) $(gsio_h) $(gstypes_h)\
$(plparse_h) $(pxpthr_h)\
$(pxattr_h) $(pxenum_h) $(pxerrors_h) $(pxoper_h) $(pxparse_h) $(pxptable_h)\
$(pxstate_h) $(pxtag_h) $(pxvalue_h) $(gsstruct_h)
diff --git a/pxl/pxoper.h b/pxl/pxoper.h
index cd488556e..d4088715f 100644
--- a/pxl/pxoper.h
+++ b/pxl/pxoper.h
@@ -17,7 +17,7 @@
#ifndef pxoper_INCLUDED
# define pxoper_INCLUDED
-#include "gserror.h"
+#include "gserrors.h"
#include "pxattr.h"
#include "pxerrors.h"
#include "pxvalue.h"
diff --git a/pxl/pxparse.c b/pxl/pxparse.c
index ae462070b..cd35cd8a8 100644
--- a/pxl/pxparse.c
+++ b/pxl/pxparse.c
@@ -16,7 +16,7 @@
#include "memory_.h"
#include "gdebug.h"
-#include "gserror.h"
+#include "gserrors.h"
#include "gsio.h"
#include "gstypes.h"
#include "plparse.h"