I am having a problem getting the minixml library pulled into my project.
I followed the documentation on minixml page here http://www.minixml.org/documentation.php/install.html
There were no errors doing the install and I see the .h file in /usr/local/include/mxml.h and the assembly file in /usr/local/lib/libmxml.a
I have included mxml.h with #define<mxml.h>
and it is finding that file no problem(as there are no errors from the mini xml types such as mxml_node_t etc...
I have also been compiling with -lmxml compile flag to link the library.
gcc -lpthread -lmxml -o...and so forth
undefined reference to `mxmlNewXML'
Here is how I call the function, which matches the prototype:
mxmlNewXML("blah");