|
From: Ian P. <piu...@us...> - 2004-04-03 10:44:47
|
Update of /cvsroot/squeak/squeak/platforms/unix/vm-display-fbdev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4114 Modified Files: sqUnixFBDev.c Log Message: Don't redefine DEBUG if already defined. Index: sqUnixFBDev.c =================================================================== RCS file: /cvsroot/squeak/squeak/platforms/unix/vm-display-fbdev/sqUnixFBDev.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** sqUnixFBDev.c 2 Apr 2004 01:09:37 -0000 1.4 --- sqUnixFBDev.c 3 Apr 2004 10:32:20 -0000 1.5 *************** *** 3,7 **** * Author: Ian Piumarta <ian...@in...> * ! * Last edited: 2003-08-22 16:35:25 by piumarta on emilia.inria.fr */ --- 3,7 ---- * Author: Ian Piumarta <ian...@in...> * ! * Last edited: 2004-04-02 14:46:52 by piumarta on emilia.local */ *************** *** 69,73 **** #include <assert.h> ! #define DEBUG 0 --- 69,75 ---- #include <assert.h> ! #if !defined(DEBUG) ! # define DEBUG 0 ! #endif |