Building Xerces-C++ library
---------------------------

                 Key: XERCESC-1744
                 URL: https://issues.apache.org/jira/browse/XERCESC-1744
             Project: Xerces-C++
          Issue Type: Task
          Components: Build
    Affects Versions: 2.2.0, 2.3.0
         Environment: Linux  Kubuntu Desktop 7.04
            Reporter: Salvatore
             Fix For: 2.2.0


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)
      {
        for (unsigned int index = 0; index < this->fCurCount; index++)
          delete[] this->fElemList[index];
       }
       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

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to