[Expat-checkins] expat/lib xmlparse.c, 1.151, 1.152 expat.h, 1.78, 1.79

Karl Waclawek kwaclaw at users.sourceforge.net
Fri Apr 7 22:24:24 CEST 2006


Update of /cvsroot/expat/expat/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5205

Modified Files:
	xmlparse.c expat.h 
Log Message:
Added XML_FEATURE_LARGE_SIZE to be able to detect if Expat was
compiled with XML_LARGE_SIZE - see XML_GetFeatureList().

Index: xmlparse.c
===================================================================
RCS file: /cvsroot/expat/expat/lib/xmlparse.c,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -d -r1.151 -r1.152
--- xmlparse.c	23 Dec 2005 14:45:27 -0000	1.151
+++ xmlparse.c	7 Apr 2006 20:24:20 -0000	1.152
@@ -1948,6 +1948,9 @@
 #ifdef XML_NS
     {XML_FEATURE_NS,               XML_L("XML_NS"), 0},
 #endif
+#ifdef XML_LARGE_SIZE
+    {XML_FEATURE_LARGE_SIZE,       XML_L("XML_LARGE_SIZE"), 0},
+#endif    
     {XML_FEATURE_END,              NULL, 0}
   };
 

Index: expat.h
===================================================================
RCS file: /cvsroot/expat/expat/lib/expat.h,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- expat.h	26 Dec 2005 15:43:22 -0000	1.78
+++ expat.h	7 Apr 2006 20:24:20 -0000	1.79
@@ -983,7 +983,8 @@
   XML_FEATURE_MIN_SIZE,
   XML_FEATURE_SIZEOF_XML_CHAR,
   XML_FEATURE_SIZEOF_XML_LCHAR,
-  XML_FEATURE_NS
+  XML_FEATURE_NS,
+  XML_FEATURE_LARGE_SIZE
   /* Additional features must be added to the end of this enum. */
 };
 



More information about the Expat-checkins mailing list