Details
Description
Subject: Building Xerces-C++ library
When I build:
1) runConfigure -plinux -cgcc -xg++ -minmem -nsocket -tnative -rpthread
2) make (I verified that my make is the gnu make!!!)
I found error in :
$XERCESCROOT/src/xercesc/util/RefArrayVectorOf.c
I correct this error adding "this->" in all use of protected members declared in
$XERCESCROOT/src/xercesc/util/BaseRefVectorOf.hpp
And this is the result:
template <class TElem> RefArrayVectorOf<TElem>::~RefArrayVectorOf()
{
if (this->fAdoptedElems)
delete [] this->fElemList;
}
I try to compile the 2.2.0 and I solved the error, but the 2.3.0 version have other problem that I not understand.
Excuse me to my English but I am Italian student.
S4lv0