Hi all!

WD> On line 16 of iterhash.cpp, try changing AlgorithmName() to
this->AlgorithmName().
All compile Ok!

And compile option -fdata-sections work fine!

But I have deprecated warning in file polynomi.cpp line 10.
I change polynomi.cpp:
line 10
#ifdef __GNUC__
  #if __GNUC__ < 3
    #include <strstream>        // can't use <sstream> because GCC 2.95.2 doesn't have 
it
    #define IN_STRSTREAM_SUBST istrstream
    #define OUT_STRSTREAM_SUBST ostrstream
    #define COUNT_SUBST pcount
  #endif  //__GNUC__ < 3
#endif  //__GNUC__
#ifndef IN_STRSTREAM_SUBST
    #include <sstream>
    #define IN_STRSTREAM_SUBST istringstream
    #define OUT_STRSTREAM_SUBST ostringstream
    #define COUNT_SUBST str().length
#endif  //STRSTREAM_SUBST

line 27:
std::IN_STRSTREAM_SUBST in((char *)str);

line 391:
std::OUT_STRSTREAM_SUBST pstr, nstr;

line 397:
if (pstr.COUNT_SUBST() <= nstr.COUNT_SUBST())

And I don`t have warnings.

My by insert my changes in CVS?
-- 
tonal                          mailto:[EMAIL PROTECTED]

Reply via email to