Hi,

with same configuration as yours I also had some problems first.
As you have not included the vc++ message you have got, I can only tell what
I have changed to solve my complie problems.

I made the folling changes:

file: XalanArrayKeyMap.hpp (include dir)
line: 277

from:

        return m_map.insert(value_type(m_keyData.back().begin(),
thePair.second));

to:
        return m_map.insert(value_type(m_keyData.back().begin().base(),
thePair.second));


file: 
AttributeListImpl.cpp (PlatformSupport)
line: 172

...call to getNewEntry(..)

from:
                        theEntry->m_Name.begin(),
                        theEntry->m_Type.begin(),
                        theEntry->m_Value.begin()));

to:
                        theEntry->m_Name.begin().base(), 
                        theEntry->m_Type.begin().base(),
                        theEntry->m_Value.begin().base()));

The compiler was not able to convert the iterartor to the underlying
pointer, so I used the
base() method to get it explicitly.

Maybe your problem will be solved too, if you make these modifications.



Wolfram Frei


Frei GmbH   
Hebelstr. 22   
D-77866 Rheinau
Germany

fon:  +49 7844 99280
fax:  +49 7844 992828
mailto:[EMAIL PROTECTED]
        




-----Urspr�ngliche Nachricht-----
Von: DUMOUCHEL David [mailto:[EMAIL PROTECTED]]
Gesendet: Montag, 18. Juni 2001 15:37
An: '[EMAIL PROTECTED]'
Betreff: Can't rebuild samples


The binary samples works well (under Win NT4)

I ve just loaded Xalan/Xerces C++. I've got the right environment (VC6 + SP5
+ Dinkumware) and i set up the path to the release directory. But i m still
unable to build a sample such as 'Xalantransform'. In fact the compilation
fails with 3 errors, and as i am not a C++ specialist i don t understand
why...

Thank you to Help me.


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

Reply via email to