about summary refs log tree commit diff
path: root/converter/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-04-07 23:50:20 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-04-07 23:50:20 +0000
commitd375c3056e23758e9f980bd96881b485a88fc4d2 (patch)
tree447c43f95f0b35eaba2eb2805976260a9c642992 /converter/other
parente4a01312e915d1faf716a7b34436d71f2cd02182 (diff)
downloadnetpbm-mirror-d375c3056e23758e9f980bd96881b485a88fc4d2.tar.gz
netpbm-mirror-d375c3056e23758e9f980bd96881b485a88fc4d2.tar.xz
netpbm-mirror-d375c3056e23758e9f980bd96881b485a88fc4d2.zip
add comment
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@275 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other')
-rw-r--r--converter/other/svgtopam.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/converter/other/svgtopam.c b/converter/other/svgtopam.c
index 268515ad..896c5f03 100644
--- a/converter/other/svgtopam.c
+++ b/converter/other/svgtopam.c
@@ -13,6 +13,17 @@
   By Bryan Henderson, San Jose, California.  May 2006
 
   Contributed to the public domain.
+
+==============================================================================
+
+  Implementation notes:
+
+   We've seen a version of <libxml/xmlreader.h> that does not
+   define type 'xmlReaderTypes'.  The system claimed to have
+   Libxml2 2.6.16 installed, but another system that makes that
+   claim _does_ have 'xmlReaderTypes' defined, so I don't know what
+   version actually has the problem.
+
 ============================================================================*/
 
 #include <assert.h>
@@ -561,6 +572,8 @@ static void
 processSubPathNode(xmlTextReaderPtr const xmlReaderP,
                    bool *           const endOfPathP) {
 
+    /* See comment above about xmlReaderTypes not being defined */
+
     xmlReaderTypes const nodeType  = xmlTextReaderNodeType(xmlReaderP);
 
     *endOfPathP = FALSE;  /* initial assumption */