You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2002/03/01 15:33:58 UTC

DO NOT REPLY [Bug 6765] - HPUX compile error when using new iostreams

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6765>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6765

HPUX compile error when using new iostreams





------- Additional Comments From paul.armstrong@cognos.com  2002-03-01 14:33 -------
As suggested:

I changed the code in
./XSLT/XSLTResultTarget.hpp

changed
#if defined(XALAN_OLD_STREAMS)
class ostream;
#else
#include <iosfwd>
#endif

to
#if defined(XALAN_OLD_STREAMS)
class ostream;
#else
#if defined (HPUX)
#include <iostream>
#endif


And was able to compile. 
Thanks for the help.
Paul