applied patch from Mark Vadoc avoiding using xmlParse* option and use

* debugXML.c testXPath.c xmllint.c xmlschemastypes.c: applied
  patch from Mark Vadoc avoiding using xmlParse* option and use
  xmlRead* instead
* win32/Makefile.bcb: patch to Borland C++ builder from Eric Zurcher
  to avoid problems with some pathnames.
Daniel
diff --git a/debugXML.c b/debugXML.c
index cd87ddc..6886ee8 100644
--- a/debugXML.c
+++ b/debugXML.c
@@ -1806,7 +1806,7 @@
         doc = NULL;
 #endif /* LIBXML_HTML_ENABLED */
     } else {
-        doc = xmlParseFile(filename);
+        doc = xmlReadFile(filename,NULL,0);
     }
     if (doc != NULL) {
         if (ctxt->loaded == 1) {