I had a problem a few weeks ago with compiling nel. It showed it does not found xmlFree in the linking phase with nanohttp.obj and nanoftp.obj
so i searched in Nel Mailing list and i found one post who advised people to use the static library (libxml_a.lib, the one which is 2.27 Mo)
i followed the tip, so Nel compiled.
I wanted yesterday to compile Objectviewer_exe.
in the linking phase, there were 17 unresolved external symbol in libxml2.lib, like address@hidden, address@hidden, address@hidden, address@hidden ......
so i go back to the normal libxml2 library
and no surprise, there is only 1 unresolved external symbol which is xmlFree.
so i am back to square 1.
does anyone knows how to correct this
i am using libxml2-2.6.9, same problem with 6.10
Heri
PS : i had the same problem with Mtp target and it compiles when i changed xmlFree to free() method in i_xml.cpp (misc project). BUT i do not think it is a good idea (memory leaks and everything ... ) and i do want a cleaner method