*** ../configure.js 2003-06-22 00:14:25.000000000 +1000 --- configure.js 2003-07-20 12:12:12.000000000 +1000 *************** *** 170,177 **** --- 170,180 ---- vf.WriteLine("WITH_TRIO=" + (withTrio? "1" : "0")); vf.WriteLine("WITH_THREADS=" + withThreads); vf.WriteLine("WITH_FTP=" + (withFtp? "1" : "0")); + vf.WriteLine("LIBXML_FTP_ENABLED=" + (withFtp? "1" : "0")); vf.WriteLine("WITH_HTTP=" + (withHttp? "1" : "0")); + vf.WriteLine("LIBXML_HTTP_ENABLED=" + (withHttp? "1" : "0")); vf.WriteLine("WITH_HTML=" + (withHtml? "1" : "0")); + vf.WriteLine("LIBXML_HTML_ENABLED=" + (withHtml? "1" : "0")); vf.WriteLine("WITH_C14N=" + (withC14n? "1" : "0")); vf.WriteLine("WITH_CATALOG=" + (withCatalog? "1" : "0")); vf.WriteLine("WITH_DOCB=" + (withDocb? "1" : "0")); *************** *** 183,188 **** --- 186,192 ---- vf.WriteLine("WITH_DEBUG=" + (withDebug? "1" : "0")); vf.WriteLine("WITH_MEM_DEBUG=" + (withMemDebug? "1" : "0")); vf.WriteLine("WITH_SCHEMAS=" + (withSchemas? "1" : "0")); + vf.WriteLine("LIBXML_SCHEMAS_ENABLED=" + (withSchemas? "1" : "0")); vf.WriteLine("WITH_REGEXPS=" + (withRegExps? "1" : "0")); vf.WriteLine("WITH_PYTHON=" + (withPython? "1" : "0")); vf.WriteLine("DEBUG=" + (buildDebug? "1" : "0")); ***************