src/lib/vGif.c 1.6

1.6 2010/06/05 19:29:54 braney
add support for 32-bit color (make USE_PNG have global consequence)
Index: src/lib/vGif.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/lib/vGif.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -B -U 4 -r1.5 -r1.6
--- src/lib/vGif.c	19 Aug 2009 22:28:36 -0000	1.5
+++ src/lib/vGif.c	5 Jun 2010 19:29:54 -0000	1.6
@@ -8,8 +8,10 @@
 #include "vGfxPrivate.h"
 
 static char const rcsid[] = "$Id$";
 
+#ifndef COLOR32
+
 struct memGif
 /* Something that handles a gif. */
     {
     struct memGfx mg;	/* Memory form.  This needs to be first field. */
@@ -58,4 +60,5 @@
 vg->data = gif;
 return vg;
 }
 
+#endif