You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by "Salvatore (JIRA)" <xe...@xml.apache.org> on 2007/08/28 16:49:30 UTC

[jira] Created: (XERCESC-1744) Building Xerces-C++ library

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: c-dev-unsubscribe@xerces.apache.org
For additional commands, e-mail: c-dev-help@xerces.apache.org


[jira] Closed: (XERCESC-1744) Building Xerces-C++ library

Posted by "David Bertoni (JIRA)" <xe...@xml.apache.org>.
     [ https://issues.apache.org/jira/browse/XERCESC-1744?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Bertoni closed XERCESC-1744.
----------------------------------

    Resolution: Won't Fix

Please don't ask questions by creating a bug report.   Instead, please subscribe to the Xerces-C User mailing list and post your questions there.

If you use the latest version of Xerces-C, you should not have any problems building it with newer versions of GCC.  Xerces-C 2.3 is quite old, and it is unlikely it will ever be patched.

> 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: c-dev-unsubscribe@xerces.apache.org
For additional commands, e-mail: c-dev-help@xerces.apache.org