|
From: Andreas R. <and...@us...> - 2003-03-09 00:45:35
|
Update of /cvsroot/squeak/squeak/platforms/Cross/plugins/SurfacePlugin
In directory sc8-pr-cvs1:/tmp/cvs-serv15794
Modified Files:
SurfacePlugin.c
Log Message:
changed moduleName to report build date and (i) vs. (e)
Index: SurfacePlugin.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Cross/plugins/SurfacePlugin/SurfacePlugin.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SurfacePlugin.c 9 May 2002 01:36:50 -0000 1.2
--- SurfacePlugin.c 9 Mar 2003 00:45:32 -0000 1.3
***************
*** 41,45 ****
static int maxSurfaces = 0;
! static const char *moduleName = "SurfacePlugin";
static VirtualMachine *interpreterProxy;
#define FAIL { interpreterProxy->primitiveFail(); return 0; }
--- 41,50 ----
static int maxSurfaces = 0;
! #ifdef SQUEAK_BUILTIN_PLUGIN
! static const char *moduleName = "SurfacePlugin "__DATE__" (i)";
! #else
! static const char *moduleName = "SurfacePlugin "__DATE__" (e)";
! #endif
!
static VirtualMachine *interpreterProxy;
#define FAIL { interpreterProxy->primitiveFail(); return 0; }
|