[gs-commits] rev 10793 - branches/icc_work/base
mvrhel at ghostscript.com
mvrhel at ghostscript.com
Wed Feb 24 07:25:17 UTC 2010
Author: mvrhel
Date: 2010-02-24 07:25:17 +0000 (Wed, 24 Feb 2010)
New Revision: 10793
Modified:
branches/icc_work/base/gxclread.c
branches/icc_work/base/lib.mak
Log:
Fix for implicit function declaration due to missing include. This was causing a pointer to be cast to an int type which caused problems on 64bit builds.
Modified: branches/icc_work/base/gxclread.c
===================================================================
--- branches/icc_work/base/gxclread.c 2010-02-24 03:16:45 UTC (rev 10792)
+++ branches/icc_work/base/gxclread.c 2010-02-24 07:25:17 UTC (rev 10793)
@@ -28,6 +28,7 @@
#include "gdevplnx.h"
#include "gsmemory.h"
#include "vdtrace.h"
+#include "gsicccache.h"
/*
* We really don't like the fact that gdevprn.h is included here, since
* command lists are supposed to be usable for purposes other than printer
Modified: branches/icc_work/base/lib.mak
===================================================================
--- branches/icc_work/base/lib.mak 2010-02-24 03:16:45 UTC (rev 10792)
+++ branches/icc_work/base/lib.mak 2010-02-24 07:25:17 UTC (rev 10793)
@@ -1725,7 +1725,7 @@
$(gscoord_h) $(gsdevice_h)\
$(gxcldev_h) $(gxdevice_h) $(gxdevmem_h) $(gxgetbit_h) $(gxhttile_h)\
$(gsmemory_h) \
- $(stream_h) $(strimpl_h) $(vdtrace_h)
+ $(stream_h) $(strimpl_h) $(vdtrace_h) $(gsicccache_h)
$(GLCC) $(GLO_)gxclread.$(OBJ) $(C_) $(GLSRC)gxclread.c
$(GLOBJ)gxclrect.$(OBJ) : $(GLSRC)gxclrect.c $(GXERR)\
More information about the gs-commits
mailing list